You've already forked TEF6686_ESP32
Fix on squelch return in XDRGTK protocol
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user