From cefe96424bc2906bd14328bc282d8841c0956efc Mon Sep 17 00:00:00 2001 From: Sjef Verhoeven PE5PVB Date: Mon, 1 Apr 2024 23:13:12 +0200 Subject: [PATCH] Fix on squelch return in XDRGTK protocol --- src/comms.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/comms.cpp b/src/comms.cpp index d3767f5..d5e5634 100644 --- a/src/comms.cpp +++ b/src/comms.cpp @@ -412,11 +412,12 @@ void XDRGTKRoutine() { case 'Q': Squelch = atoi(buff + 1); if (Squelch == -1) { - DataPrint("Q - 1\n"); + DataPrint("Q-1\n"); } else { Squelch *= 10; - DataPrint("Q\n"); + DataPrint("Q"); DataPrint(String(Squelch / 10)); + DataPrint("\n"); } break;