From a0e63c701d1313f85140d5953c8ce2a1b82d8988 Mon Sep 17 00:00:00 2001 From: Sjef Verhoeven PE5PVB Date: Fri, 4 Aug 2023 23:26:59 +0200 Subject: [PATCH] Test for Stationlist android --- TEF6686_ESP32.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TEF6686_ESP32.ino b/TEF6686_ESP32.ino index 5a899ef..c759c39 100644 --- a/TEF6686_ESP32.ino +++ b/TEF6686_ESP32.ino @@ -2901,8 +2901,8 @@ void ShowFreq(int mode) { if (wifi) { Udp.beginPacket(remoteip, 9030); Udp.print("from=TEF tuner;freq="); - if (band > BAND_GAP) Udp.print(String(frequency_AM) + "000;ClearRDS=1"); - else Udp.print(String(band == BAND_FM ? frequency : frequency_OIRT) + "0000;ClearRDS=1"); + if (band > BAND_GAP) Udp.print(String(frequency_AM) + "000");//;ClearRDS=1"); + else Udp.print(String(band == BAND_FM ? frequency : frequency_OIRT) + "0000");//;ClearRDS=1"); Udp.endPacket(); } }