Fix on squelch return in XDRGTK protocol

This commit is contained in:
Sjef Verhoeven PE5PVB
2024-04-01 23:13:12 +02:00
parent bb3094a8e1
commit cefe96424b

View File

@@ -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;