From b783e9865ed69a688c7828f637b2d58298692528 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Thu, 13 Oct 2022 18:39:14 +0200 Subject: [PATCH] start the FSM properly --- mission/devices/SolarArrayDeploymentHandler.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/mission/devices/SolarArrayDeploymentHandler.cpp b/mission/devices/SolarArrayDeploymentHandler.cpp index 72bcace4..dee6a203 100644 --- a/mission/devices/SolarArrayDeploymentHandler.cpp +++ b/mission/devices/SolarArrayDeploymentHandler.cpp @@ -278,6 +278,7 @@ bool SolarArrayDeploymentHandler::startFsmOn(uint32_t burnCountdown_, bool dryRu fsmInfo.onOff = true; fsmInfo.dryRun = dryRun; fsmInfo.burnCountdown = burnCountdown_; + stateMachine = StateMachine::MAIN_POWER_ON; retryCounter = 0; return true; }