optional module handling complete

This commit is contained in:
2021-07-19 18:26:54 +02:00
parent d47906e833
commit d4f5c31881
55 changed files with 207 additions and 54 deletions

View File

@ -1,11 +1,13 @@
#ifndef FSFW_TMTCSERVICES_TMSTOREBACKENDIF_H_
#define FSFW_TMTCSERVICES_TMSTOREBACKENDIF_H_
#include "../returnvalues/HasReturnvaluesIF.h"
#include "../objectmanager/SystemObjectIF.h"
#include "../parameters/HasParametersIF.h"
#include "../storagemanager/StorageManagerIF.h"
#include "../timemanager/Clock.h"
#include "tmStorageConf.h"
#include "fsfw/returnvalues/HasReturnvaluesIF.h"
#include "fsfw/objectmanager/SystemObjectIF.h"
#include "fsfw/parameters/HasParametersIF.h"
#include "fsfw/storagemanager/StorageManagerIF.h"
#include "fsfw/timemanager/Clock.h"
class TmPacketInformation;
class TmPacketMinimal;
class SpacePacketBase;

View File

@ -1,9 +1,10 @@
#ifndef FSFW_TMTCSERVICES_TMSTOREFRONTENDIF_H_
#define FSFW_TMTCSERVICES_TMSTOREFRONTENDIF_H_
#include "tmStorageConf.h"
#include "TmStorePackets.h"
#include "../returnvalues/HasReturnvaluesIF.h"
#include "../ipc/MessageQueueSenderIF.h"
#include "fsfw/returnvalues/HasReturnvaluesIF.h"
#include "fsfw/ipc/MessageQueueSenderIF.h"
class TmPacketMinimal;
class SpacePacketBase;

View File

@ -1,4 +1,4 @@
#include "fsfw/tmstorage/TmStoreMessage.h"
#include "TmStoreMessage.h"
#include "fsfw/objectmanager/ObjectManager.h"
TmStoreMessage::~TmStoreMessage() {

View File

@ -1,10 +1,11 @@
#ifndef FSFW_TMSTORAGE_TMSTOREMESSAGE_H_
#define FSFW_TMSTORAGE_TMSTOREMESSAGE_H_
#include "tmStorageConf.h"
#include "TmStorePackets.h"
#include "../ipc/CommandMessage.h"
#include "../storagemanager/StorageManagerIF.h"
#include "../objectmanager/SystemObjectIF.h"
#include "fsfw/ipc/CommandMessage.h"
#include "fsfw/storagemanager/StorageManagerIF.h"
#include "fsfw/objectmanager/SystemObjectIF.h"
class TmStoreMessage {
public:

View File

@ -1,14 +1,15 @@
#ifndef FSFW_TMSTORAGE_TMSTOREPACKETS_H_
#define FSFW_TMSTORAGE_TMSTOREPACKETS_H_
#include "../serialize/SerialFixedArrayListAdapter.h"
#include "../serialize/SerializeElement.h"
#include "../serialize/SerialLinkedListAdapter.h"
#include "../serialize/SerialBufferAdapter.h"
#include "../tmtcpacket/pus/tm/TmPacketMinimal.h"
#include "../timemanager/TimeStamperIF.h"
#include "../timemanager/CCSDSTime.h"
#include "../globalfunctions/timevalOperations.h"
#include "tmStorageConf.h"
#include "fsfw/serialize/SerialFixedArrayListAdapter.h"
#include "fsfw/serialize/SerializeElement.h"
#include "fsfw/serialize/SerialLinkedListAdapter.h"
#include "fsfw/serialize/SerialBufferAdapter.h"
#include "fsfw/tmtcpacket/pus/tm/TmPacketMinimal.h"
#include "fsfw/timemanager/TimeStamperIF.h"
#include "fsfw/timemanager/CCSDSTime.h"
#include "fsfw/globalfunctions/timevalOperations.h"
class ServiceSubservice: public SerialLinkedListAdapter<SerializeIF> {
public:

View File

@ -0,0 +1,11 @@
#ifndef FSFW_TMSTORAGE_TMSTORAGECONF_H_
#define FSFW_TMSTORAGE_TMSTORAGECONF_H_
#include "fsfw/FSFW.h"
#ifndef FSFW_ADD_TMSTORAGE
#warning TM storage files were includes but compilation was \
not enabled with FSFW_ADD_TMSTORAGE
#endif
#endif /* FSFW_TMSTORAGE_TMSTORAGECONF_H_ */