This commit is contained in:
2023-03-24 20:50:33 +01:00
parent da386edd05
commit 87e1746d71
99 changed files with 139 additions and 254 deletions

View File

@ -0,0 +1,14 @@
#ifndef MISSION_SYSTEM_ACSSUBSYSTEM_H_
#define MISSION_SYSTEM_ACSSUBSYSTEM_H_
#include <fsfw/subsystem/Subsystem.h>
class AcsSubsystem : public Subsystem {
public:
AcsSubsystem(object_id_t setObjectId, uint32_t maxNumberOfSequences, uint32_t maxNumberOfTables);
private:
void announceMode(bool recursive) override;
};
#endif /* MISSION_SYSTEM_ACSSUBSYSTEM_H_ */