Compatibility with FM-DX-Webserver

This commit is contained in:
Sjef Verhoeven PE5PVB
2024-01-27 16:57:29 +01:00
parent d448c22140
commit dbf8cf61da
3 changed files with 22 additions and 23 deletions

View File

@@ -352,7 +352,7 @@ void XDRGTKRoutine() {
case 'T':
unsigned int freqtemp;
freqtemp = atoi(buff + 1);
if (BAND_FM) freqtemp -= ConverterSet * 1000;
if (BAND_FM) freqtemp -= ConverterSet * 1000;
if (seek) seek = false;
if (freqtemp >= LWLowEdgeSet && freqtemp <= LWHighEdgeSet) {
frequency_LW = freqtemp;
@@ -574,7 +574,7 @@ void XDRGTKRoutine() {
DataPrint("Sm");
}
}
DataPrint(String(((SStatus * 100) + 10875) / 1000) + "." + String(((SStatus * 100) + 10875) / 100 % 10) + ", " + String(WAM / 10) + ", " + String(CN) + "\n");
DataPrint(String(((SStatus * 100) + 10875) / 1000) + "." + String(((SStatus * 100) + 10875) / 100 % 10) + "," + String(WAM / 10) + "," + String(CN) + "\n\n");
}
void passwordcrypt() {
@@ -616,5 +616,4 @@ void tryWiFi() {
Server.end();
Udp.stop();
WiFi.mode(WIFI_OFF);
}
}
}