summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRiley Inman <rileyminman@gmail.com>2025-02-13 19:42:45 -0800
committerRiley Inman <rileyminman@gmail.com>2025-02-13 19:42:45 -0800
commit280ce7c1dfab79708a72beb5b28dfcaca2657775 (patch)
tree311b210525f1807a9af9c109ac02b909cdcd946c
parentad0f847e683a50762381f21c8d80b35a0d164cef (diff)
downloadtangara-fw-280ce7c1dfab79708a72beb5b28dfcaca2657775.tar.gz
Bump storage unmount timer to 2 minutes to match idle timer
-rw-r--r--src/tangara/system_fsm/running.cpp2
1 files changed, 1 insertions, 1 deletions
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;