diff options
| author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-07-18 21:56:01 +0200 |
|---|---|---|
| committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-07-18 21:56:01 +0200 |
| commit | 706113eca974006062365dd000c44eacbb09aeb7 (patch) | |
| tree | 877f0b0b257fee02982ed0291af754bd3dfabbc8 /src | |
| parent | e607769a8027f9e3bfb675d09fe587d2a1d295e8 (diff) | |
| download | glutte-o-matic-706113eca974006062365dd000c44eacbb09aeb7.tar.gz glutte-o-matic-706113eca974006062365dd000c44eacbb09aeb7.tar.bz2 glutte-o-matic-706113eca974006062365dd000c44eacbb09aeb7.zip | |
Change minimum QSO length for LETTER to 3s
It feels more natural, 5s is a bit longish.
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 660ced8..6e0d98b 100644 --- a/src/common/src/Core/fsm.c +++ b/src/common/src/Core/fsm.c @@ -301,7 +301,7 @@ void fsm_update() { last_qso_start_timestamp = timestamp_now(); } - if (!fsm_in.sq && fsm_current_state_time_s() < 5) { + if (!fsm_in.sq && fsm_current_state_time_s() < 3) { /* To avoid that very short open squelch triggers * transmit CW letters all the time. Some people * enjoy doing that. |
