From 48cbaca7f5fc8e7ac0bf699a3d17b3922ae925cc Mon Sep 17 00:00:00 2001 From: Sjef Verhoeven PE5PVB Date: Thu, 27 Nov 2025 20:39:01 +0100 Subject: [PATCH] Added MPX control in xdrgtk protocol command 'L0' is normal, 'L1' is MPX mode --- src/comms.cpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/comms.cpp b/src/comms.cpp index cc46560..ea58f66 100644 --- a/src/comms.cpp +++ b/src/comms.cpp @@ -119,7 +119,6 @@ void Communication() { if (afscreen || advancedRDS) { BuildDisplay(); SelectBand(); -// ScreensaverTimerReopen(); } if (tempfreq >= FREQ_LW_LOW_EDGE_MIN && tempfreq <= FREQ_LW_HIGH_EDGE_MAX) { @@ -600,6 +599,13 @@ void XDRGTKRoutine() { DataPrint("K" + String(scanhold) + "\n"); break; + case 'L': + byte mpx; + mpx = atol(buff + 1); + DataPrint("L" + String(mpx) + "\n"); + radio.setAudio(mpx); + break; + case 'M': if (scandxmode) cancelDXScan(); byte XDRband;