eive-obsw/mission/system/power/EpsSubsystem.h
meggert 634f6c6001
Some checks failed
EIVE/eive-obsw/pipeline/pr-main There was a failure building this commit
introduction of eps subsystem object
2023-09-13 14:34:10 +02:00

14 lines
392 B
C++

#ifndef MISSION_SYSTEM_OBJECTS_EPSSUBSYSTEM_H_
#define MISSION_SYSTEM_OBJECTS_EPSSUBSYSTEM_H_
#include <fsfw/subsystem/Subsystem.h>
class EpsSubsystem : public Subsystem {
public:
EpsSubsystem(object_id_t objectId, uint32_t maxNumberOfSequences, uint32_t maxNumberOfTables);
private:
void announceMode(bool recursive) override;
};
#endif /* MISSION_SYSTEM_OBJECTS_EPSSUBSYSTEM_H_ */