Fix missing newlines for frequency output; fixed FM frequency

This commit is contained in:
Christoph Lorenz
2024-04-03 18:39:15 +02:00
parent 5bdacf4d5d
commit e9f29ca204
2 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -698,7 +698,7 @@ void XDRGTKRoutine() {
case 'x':
DataPrint("OK\n");
if (BAND_FM) {
DataPrint("T" + String(frequency + (ConverterSet * 100) * 10) + "\n");
DataPrint("T" + String((frequency + ConverterSet * 100) * 10) + "\n");
} else if (BAND_OIRT) {
DataPrint("T" + String(frequency_OIRT * 10) + "\n");
} else {