From 065c15fb7269668d06bca123bee4de36c82ef4b3 Mon Sep 17 00:00:00 2001 From: Silvano Seva Date: Tue, 24 Aug 2021 08:30:18 +0200 Subject: [PATCH] Force deactivation of TX and RX tone squelch for operating modes different from FM --- openrtx/src/rtx/rtx.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/openrtx/src/rtx/rtx.cpp b/openrtx/src/rtx/rtx.cpp index a7f74370..f1d42d39 100644 --- a/openrtx/src/rtx/rtx.cpp +++ b/openrtx/src/rtx/rtx.cpp @@ -121,6 +121,13 @@ void rtx_taskFunc() if(reconfigure) { + // Force TX and RX tone squelch to off for OpModes different from FM. + if(rtxStatus.opMode != FM) + { + rtxStatus.txToneEn = 0; + rtxStatus.rxToneEn = 0; + } + /* * Handle change of opMode: * - deactivate current opMode and switch operating status to "OFF";