Robin Mueller
9ba65b04fd
All checks were successful
EIVE/eive-obsw/pipeline/head This commit looks good
15 lines
453 B
C++
15 lines
453 B
C++
#ifndef MISSION_CONTROLLER_CONTROLLERDEFINITIONS_ACSCONTROLLERDEFINITIONS_H_
|
|
#define MISSION_CONTROLLER_CONTROLLERDEFINITIONS_ACSCONTROLLERDEFINITIONS_H_
|
|
|
|
#include <fsfw/modes/HasModesIF.h>
|
|
|
|
namespace acs {
|
|
|
|
enum CtrlModes { OFF = HasModesIF::MODE_OFF, SAFE = 1, DETUMBLE = 2, IDLE = 3, TARGET_PT = 4 };
|
|
|
|
static constexpr Submode_t IDLE_CHARGE = 1;
|
|
|
|
} // namespace acs
|
|
|
|
#endif /* MISSION_CONTROLLER_CONTROLLERDEFINITIONS_ACSCONTROLLERDEFINITIONS_H_ */
|