diff options
-rw-r--r-- | src/common/src/Core/fsm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/src/Core/fsm.c b/src/common/src/Core/fsm.c index 0e3d27b..68da411 100644 --- a/src/common/src/Core/fsm.c +++ b/src/common/src/Core/fsm.c @@ -328,7 +328,7 @@ void fsm_update() { */ next_state = FSM_ECOUTE; } - else if (!fsm_in.sq && fsm_current_state_time_s() >= 5) { + else if (!fsm_in.sq && fsm_current_state_time_s() >= 3) { next_state = FSM_LETTRE; } else if (fsm_current_state_time_s() > 5 * 60) { |