diff options
| author | cooljqln <cooljqln@noreply.codeberg.org> | 2025-02-17 04:58:44 +0000 |
|---|---|---|
| committer | cooljqln <cooljqln@noreply.codeberg.org> | 2025-02-17 04:58:44 +0000 |
| commit | 0adf31b72d25c9d6abdd35f3d8dc1274c9b12f56 (patch) | |
| tree | 311b210525f1807a9af9c109ac02b909cdcd946c /src | |
| parent | ad0f847e683a50762381f21c8d80b35a0d164cef (diff) | |
| parent | 280ce7c1dfab79708a72beb5b28dfcaca2657775 (diff) | |
| download | tangara-fw-0adf31b72d25c9d6abdd35f3d8dc1274c9b12f56.tar.gz | |
Merge pull request 'Bump storage unmount timer to 2 minutes to match idle timer' (#269) from rilight/tangara-fw:unmount-timer into main
Reviewed-on: https://codeberg.org/cool-tech-zone/tangara-fw/pulls/269
Diffstat (limited to 'src')
| -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; |
