From 280ce7c1dfab79708a72beb5b28dfcaca2657775 Mon Sep 17 00:00:00 2001 From: Riley Inman Date: Thu, 13 Feb 2025 19:42:45 -0800 Subject: [PATCH] Bump storage unmount timer to 2 minutes to match idle timer --- src/tangara/system_fsm/running.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tangara/system_fsm/running.cpp b/src/tangara/system_fsm/running.cpp index cf820659..13f58ef9 100644 --- a/src/tangara/system_fsm/running.cpp +++ b/src/tangara/system_fsm/running.cpp @@ -27,7 +27,7 @@ namespace states { [[maybe_unused]] static const char kTag[] = "RUN"; -static const TickType_t kTicksBeforeUnmount = pdMS_TO_TICKS(10000); +static const TickType_t kTicksBeforeUnmount = pdMS_TO_TICKS(120000); static TimerHandle_t sUnmountTimer = nullptr;