eive-obsw/mission/system/objects/EiveSystem.h

22 lines
577 B
C
Raw Normal View History

#ifndef MISSION_SYSTEM_EIVESYSTEM_H_
#define MISSION_SYSTEM_EIVESYSTEM_H_
2022-04-14 09:54:07 +02:00
#include <fsfw/subsystem/Subsystem.h>
class EiveSystem : public Subsystem {
public:
2022-09-29 19:40:00 +02:00
EiveSystem(object_id_t setObjectId, uint32_t maxNumberOfSequences, uint32_t maxNumberOfTables);
2022-04-14 09:54:07 +02:00
private:
MessageQueueIF* eventQueue = nullptr;
2023-03-21 14:38:10 +01:00
bool performSafeRecovery = false;
2023-03-08 18:56:27 +01:00
ReturnValue_t initialize() override;
void performChildOperation() override;
2023-02-13 01:26:30 +01:00
void announceMode(bool recursive) override;
2023-03-08 18:56:27 +01:00
void handleEventMessages();
void commandSelfToSafe();
2022-04-14 09:54:07 +02:00
};
#endif /* MISSION_SYSTEM_EIVESYSTEM_H_ */