You've already forked TEF6686_ESP32
Fix PI recall in memory mode
Also added PI check on manual entries and updated the doc
This commit is contained in:
@@ -258,6 +258,16 @@ void Communication() {
|
||||
|
||||
if (memms > 1) error |= (1 << 3);
|
||||
|
||||
if (rdsPi[0] != '\0') {
|
||||
for (int i = 0; i < 4; i++) {
|
||||
char c = rdsPi[i];
|
||||
if (!((c >= '0' && c <= '9') || (c >= 'a' && c <= 'f') || (c >= 'A' && c <= 'F'))) {
|
||||
error |= (1 << 5);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (error == 0) {
|
||||
error |= (1 << 7);
|
||||
memorypos = mempos;
|
||||
@@ -453,7 +463,7 @@ void XDRGTKRoutine() {
|
||||
if (!screenmute) {
|
||||
if (!usesquelch) {
|
||||
tftPrint(-1, "SQ:", 212, 145, BackgroundColor, BackgroundColor, 16);
|
||||
showAutoSquelch(0);
|
||||
showAutoSquelch(0);
|
||||
} else {
|
||||
Squelch = -150;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user