that was a lot of printouts

This commit is contained in:
2023-04-05 14:46:45 +02:00
parent 5e93282662
commit 65c231e92d
4 changed files with 9 additions and 42 deletions

View File

@ -1,4 +1,5 @@
#include "PowerStateMachineBase.h"
#include "fsfw/serviceinterface.h"
PowerStateMachineBase::PowerStateMachineBase(PowerSwitchIF *pwrSwitcher, dur_millis_t checkTimeout)
@ -21,8 +22,8 @@ void PowerStateMachineBase::start(Mode_t mode, Submode_t submode) {
checkTimeout.resetTimer();
targetMode = mode;
targetSubmode = submode;
sif::debug << "starting power fsm with mode " << mode << " and submode " << (int) submode
<< std::endl;
sif::debug << "starting power fsm with mode " << mode << " and submode " << (int)submode
<< std::endl;
state = power::States::SWITCHING_POWER;
}