From b6213bb2d3fb0db972933e6ff8b9df2225b47ffb Mon Sep 17 00:00:00 2001 From: "luca.conterio" <luca.conterio@skywarder.eu> Date: Tue, 12 Oct 2021 17:07:19 +0200 Subject: [PATCH] [FMM] mission timeout put to 15 minutes instead of 30 --- src/boards/DeathStack/configs/FMMConfig.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/boards/DeathStack/configs/FMMConfig.h b/src/boards/DeathStack/configs/FMMConfig.h index ad0c44b4..c9bbba9c 100644 --- a/src/boards/DeathStack/configs/FMMConfig.h +++ b/src/boards/DeathStack/configs/FMMConfig.h @@ -28,7 +28,7 @@ namespace DeathStackBoard // State timeouts // Automatically end the mission after a very long time, in order to safely // close the logs if radio comms have been lost -static constexpr unsigned int TIMEOUT_END_MISSION = 30 * 60 * 1000; +static constexpr unsigned int TIMEOUT_END_MISSION = 15 * 60 * 1000; static constexpr unsigned int FMM_PRIORITY = 2; -- GitLab