From 6e533be1083d13915ef9b30c23d99eb482fad495 Mon Sep 17 00:00:00 2001 From: andimik Date: Sat, 26 Aug 2023 16:15:34 +0200 Subject: [PATCH] Missing sender for AF and ECC udp packets for Stationlist --- src/rds.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rds.cpp b/src/rds.cpp index e6e66b7..2bd6444 100644 --- a/src/rds.cpp +++ b/src/rds.cpp @@ -277,7 +277,7 @@ void doAF() { if (radio.af_counter != af_counterold && radio.rds.hasAF == true) { if (wifi) { Udp.beginPacket(remoteip, 9030); - Udp.print("AF="); + Udp.print("from=TEF_tuner " + String(stationlistid, DEC) + ";AF="); for (byte af_scan = 0; af_scan < radio.af_counter; af_scan++) { if (wifi) { @@ -570,7 +570,7 @@ void showECC() { if (wifi) { Udp.beginPacket(remoteip, 9030); - Udp.print("ECC="); + Udp.print("from=TEF_tuner " + String(stationlistid, DEC) + ";ECC="); if (radio.rds.ECC < 0x10) Udp.print("0"); Udp.print(String(radio.rds.ECC, HEX)); Udp.endPacket();