From 3babf003d0a97a8998e2a4b9d04809b0193d83c9 Mon Sep 17 00:00:00 2001 From: DL1YCF Date: Mon, 24 May 2021 10:32:10 +0200 Subject: [PATCH] Do not call cw_audio_write if no local audio active --- transmitter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transmitter.c b/transmitter.c index e2a74ac..3748214 100644 --- a/transmitter.c +++ b/transmitter.c @@ -1422,7 +1422,7 @@ void add_mic_sample(TRANSMITTER *tx,float mic_sample) { // side tone ramp=cwramp48[cw_shape]; cwsample=0.00197 * getNextSideToneSample() * cw_keyer_sidetone_volume * ramp; - cw_audio_write(active_receiver, cwsample); + if(active_receiver->local_audio) cw_audio_write(active_receiver, cwsample); cw_shape_buffer48[tx->samples]=ramp; // // In the new protocol, we MUST maintain a constant flow of audio samples to the radio -- 2.45.2