eive-obsw/mission/system/objects/EiveSystem.h
Robin Mueller 26a9dce0a0
Some checks failed
EIVE/eive-obsw/pipeline/pr-develop There was a failure building this commit
basic implementation for passive cooling
2023-03-13 17:36:41 +01:00

22 lines
591 B
C++

#ifndef MISSION_SYSTEM_EIVESYSTEM_H_
#define MISSION_SYSTEM_EIVESYSTEM_H_
#include <fsfw/subsystem/Subsystem.h>
class EiveSystem : public Subsystem {
public:
EiveSystem(object_id_t setObjectId, uint32_t maxNumberOfSequences, uint32_t maxNumberOfTables);
private:
MessageQueueIF* eventQueue = nullptr;
Countdown fallbackCommandCd = Countdown(30000);
ReturnValue_t initialize() override;
void performChildOperation() override;
void announceMode(bool recursive) override;
void handleEventMessages();
void commandSelfToSafe();
};
#endif /* MISSION_SYSTEM_EIVESYSTEM_H_ */