start the FSM properly
All checks were successful
EIVE/eive-obsw/pipeline/pr-develop This commit looks good

This commit is contained in:
Robin Müller 2022-10-13 18:39:14 +02:00
parent d8907d5ccc
commit b783e9865e
No known key found for this signature in database
GPG Key ID: 11D4952C8CCEF814

View File

@ -278,6 +278,7 @@ bool SolarArrayDeploymentHandler::startFsmOn(uint32_t burnCountdown_, bool dryRu
fsmInfo.onOff = true; fsmInfo.onOff = true;
fsmInfo.dryRun = dryRun; fsmInfo.dryRun = dryRun;
fsmInfo.burnCountdown = burnCountdown_; fsmInfo.burnCountdown = burnCountdown_;
stateMachine = StateMachine::MAIN_POWER_ON;
retryCounter = 0; retryCounter = 0;
return true; return true;
} }