From: c vw Date: Tue, 22 Feb 2022 14:06:25 +0000 (+0100) Subject: Handle case where CW key-down arrives before RX/TX transition is complete. X-Git-Url: https://git.rkrishnan.org/listings/vdrive/index.php?a=commitdiff_plain;h=55f4ee4bac11d1c4041e90717532f75bbde67c73;p=pihpsdr.git Handle case where CW key-down arrives before RX/TX transition is complete. --- diff --git a/transmitter.c b/transmitter.c index 719439c..d148fff 100644 --- a/transmitter.c +++ b/transmitter.c @@ -1497,7 +1497,7 @@ void add_mic_sample(TRANSMITTER *tx,float mic_sample) { // cw_not_ready=1; cw_key_up=0; - cw_key_down=0; + if (cw_key_down > 0) cw_key_down--; // in case it occured before the RX/TX transition cw_shape=0; // insert "silence" in CW audio and TX IQ buffers cw_shape_buffer48[tx->samples]=0.0;