Robin Mueller
3759b5d34a
All checks were successful
EIVE/eive-obsw/pipeline/pr-develop This commit looks good
15 lines
362 B
C++
15 lines
362 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:
|
|
void announceMode(bool recursive) override;
|
|
};
|
|
|
|
#endif /* MISSION_SYSTEM_EIVESYSTEM_H_ */
|