diff options
| author | Riley Inman <rileyminman@gmail.com> | 2025-02-13 19:42:45 -0800 |
|---|---|---|
| committer | Riley Inman <rileyminman@gmail.com> | 2025-02-13 19:42:45 -0800 |
| commit | 280ce7c1dfab79708a72beb5b28dfcaca2657775 (patch) | |
| tree | 311b210525f1807a9af9c109ac02b909cdcd946c /src/tangara | |
| parent | ad0f847e683a50762381f21c8d80b35a0d164cef (diff) | |
| download | tangara-fw-280ce7c1dfab79708a72beb5b28dfcaca2657775.tar.gz | |
Bump storage unmount timer to 2 minutes to match idle timer
Diffstat (limited to 'src/tangara')
| -rw-r--r-- | src/tangara/system_fsm/running.cpp | 2 |
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; |
