now only scheduling is left
Some checks failed
EIVE/eive-obsw/pipeline/pr-develop There was a failure building this commit
Some checks failed
EIVE/eive-obsw/pipeline/pr-develop There was a failure building this commit
This commit is contained in:
@ -2,18 +2,19 @@
|
||||
#define MISSION_TMTC_PERSISTENTTMSTOREWITHTMQUEUE_H_
|
||||
#include <mission/tmtc/PersistentTmStore.h>
|
||||
|
||||
class PersistentTmStoreWithTmQueue : public AcceptsTelemetryIF {
|
||||
class PersistentTmStoreWithTmQueue : public PersistentTmStore, public AcceptsTelemetryIF {
|
||||
public:
|
||||
PersistentTmStoreWithTmQueue(StorageManagerIF& tmStore, PersistentTmStore& persistentTmStore,
|
||||
PersistentTmStoreWithTmQueue(PersistentTmStoreArgs args, const char* storeName,
|
||||
uint32_t tmQueueDepth);
|
||||
|
||||
ReturnValue_t handleNextTm();
|
||||
PersistentTmStore& getTmStore();
|
||||
|
||||
[[nodiscard]] const char* getName() const override;
|
||||
[[nodiscard]] MessageQueueId_t getReportReceptionQueue(uint8_t virtualChannel) const override;
|
||||
|
||||
private:
|
||||
StorageManagerIF& tmStore;
|
||||
const char* storeName;
|
||||
MessageQueueIF* tmQueue;
|
||||
PersistentTmStore& persistentTmStore;
|
||||
};
|
||||
|
||||
#endif /* MISSION_TMTC_PERSISTENTTMSTOREWITHTMQUEUE_H_ */
|
||||
|
Reference in New Issue
Block a user