aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/common/src/Core/fsm.c11
1 files changed, 4 insertions, 7 deletions
diff --git a/src/common/src/Core/fsm.c b/src/common/src/Core/fsm.c
index 89db456..0fdedb8 100644
--- a/src/common/src/Core/fsm.c
+++ b/src/common/src/Core/fsm.c
@@ -207,8 +207,9 @@ void fsm_update() {
break;
case FSM_OPEN1:
- fsm_out.tx_on = 1;
-
+ /* Do not enable TX_ON here, otherwise we could get stuck transmitting
+ * forever if SQ never goes low.
+ */
if (!fsm_in.sq) {
next_state = FSM_OPEN2;
}
@@ -507,11 +508,7 @@ void fsm_update() {
} else { //FSM_BALISE_COURTE_OPEN
if (fsm_in.cw_psk31_done) {
- if (fsm_in.sq) {
- next_state = FSM_OPEN1;
- } else {
- next_state = FSM_OPEN2;
- }
+ next_state = FSM_OPEN2;
}
}