From 9ccd16fd800d7088e3fd175d9e56fdcb24210d56 Mon Sep 17 00:00:00 2001 From: c vw Date: Mon, 14 Sep 2020 12:17:12 +0200 Subject: [PATCH] Take care to do the RX/TX transition when entering the keyer. --- iambic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iambic.c b/iambic.c index 8766b0a..9180cfd 100644 --- a/iambic.c +++ b/iambic.c @@ -359,7 +359,7 @@ static void* keyer_thread(void *arg) { // check mode: to not induce RX/TX transition if not in CW mode txmode=get_tx_mode(); - if (!mox && cw_breakin && (txmode == modeCWU || txmode == modeCWL)) { + if (cw_breakin && (txmode == modeCWU || txmode == modeCWL)) { g_idle_add(ext_mox_update, (gpointer)(long) 1); // Wait for mox, that is, wait for WDSP shutting down the RX and // firing up the TX. This induces a small delay when hitting the key for -- 2.45.2