From 4283224629a77f2d4fa350903ee0acc72968eebe Mon Sep 17 00:00:00 2001 From: c vw Date: Fri, 31 Jan 2020 17:26:03 +0100 Subject: [PATCH] correction for GPIO side tonecorrection for GPIO side tonecorrection for GPIO side tonecorrection for GPIO side tonecorrection for GPIO side tonecorrection for GPIO side tonecorrection for GPIO side tonecorrection for GPIO side tone --- iambic.c | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/iambic.c b/iambic.c index 7f58ebf..b8d3c2d 100644 --- a/iambic.c +++ b/iambic.c @@ -357,17 +357,18 @@ static void* keyer_thread(void *arg) { sem_wait(&cw_event); #endif + // swallow any cw_events posted during the last "cw hang" time. + if (!kcwl && !kcwr) continue; + // // If using GPIO side tone information, mute CW side tone // as long as the keyer thread is active // if (gpio_cw_sidetone_enabled()) { old_volume=cw_keyer_sidetone_volume; + cw_keyer_sidetone_volume=0; } - // swallow any cw_events posted during the last "cw hang" time. - if (!kcwl && !kcwr) continue; - // 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)) { @@ -614,13 +615,13 @@ static void* keyer_thread(void *arg) { #else clock_nanosleep(CLOCK_MONOTONIC, TIMER_ABSTIME, &loop_delay, NULL); #endif - // - // If we have reduced the side tone volume, restore it! - // - if (gpio_cw_sidetone_enabled()) { - cw_keyer_sidetone_volume = old_volume; - } } + // + // If we have reduced the side tone volume, restore it! + // + if (gpio_cw_sidetone_enabled()) { + cw_keyer_sidetone_volume = old_volume; + } } fprintf(stderr,"keyer_thread: EXIT\n"); -- 2.45.2