eive-obsw/mission/system/TcsSubsystem.cpp
Robin Mueller bcd97076e1
All checks were successful
EIVE/eive-obsw/pipeline/head This commit looks good
started TCS subsystem
2022-03-22 11:57:48 +01:00

21 lines
546 B
C++

#include "TcsSubsystem.h"
TcsSubsystem::TcsSubsystem(object_id_t objectId, object_id_t parentId, TcsBoardHelper helper)
: SubsystemBase(objectId, parentId, MODE_OFF, 24), helper(helper) {
}
ReturnValue_t TcsSubsystem::handleCommandMessage(CommandMessage *message) {
return RETURN_OK;
}
void TcsSubsystem::performChildOperation() {
}
ReturnValue_t TcsSubsystem::checkModeCommand(Mode_t mode, Submode_t submode,
uint32_t *msToReachTheMode) {
return RETURN_OK;
}
void TcsSubsystem::startTransition(Mode_t mode, Submode_t submode) {
}