diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-12-20 13:20:47 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-12-20 13:20:47 +0100 |
commit | 84d922b5b3f5544e47f24f0aa6c382d554d5c460 (patch) | |
tree | 437c4f9a63daaf935e1f2f5569efd2a6f90ea19d /src | |
parent | 1ed66eae5f45b276d4d39a2827fea3939943844f (diff) | |
download | glutte-o-matic-84d922b5b3f5544e47f24f0aa6c382d554d5c460.tar.gz glutte-o-matic-84d922b5b3f5544e47f24f0aa6c382d554d5c460.tar.bz2 glutte-o-matic-84d922b5b3f5544e47f24f0aa6c382d554d5c460.zip |
Avoid letter delay if QSO duration was between 3 and 5 sec
Diffstat (limited to 'src')
-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) { |