meggert
634f6c6001
Some checks failed
EIVE/eive-obsw/pipeline/pr-main There was a failure building this commit
14 lines
392 B
C++
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_ */
|