rerun generator script
All checks were successful
EIVE/eive-obsw/pipeline/pr-develop This commit looks good

This commit is contained in:
2022-10-14 11:55:21 +02:00
parent 470f0ad7e8
commit 69f34acbd2
8 changed files with 61 additions and 32 deletions

View File

@@ -219,6 +219,7 @@ void SolarArrayDeploymentHandler::handleStateMachine() {
fsmInfo.alternationDummy = true;
}
sif::info << "S/A Deployment: Burning" << std::endl;
triggerEvent(BURN_PHASE_START, fsmInfo.burnCountdownMs, fsmInfo.dryRun);
stateMachine = BURNING;
}
if (stateMachine == BURNING) {
@@ -228,6 +229,7 @@ void SolarArrayDeploymentHandler::handleStateMachine() {
sif::debug << "SA DEPL FSM: BURNING done -> WAIT_MAIN_POWER_OFF" << std::endl;
}
allOff();
triggerEvent(BURN_PHASE_DONE, fsmInfo.burnCountdownMs, fsmInfo.dryRun);
stateMachine = WAIT_MAIN_POWER_OFF;
}
}