Send udp data even when no RDS

This commit is contained in:
Sjef Verhoeven PE5PVB
2025-01-28 22:47:11 +01:00
parent 6852e91416
commit 9709830da6

View File

@@ -943,12 +943,14 @@ void setup() {
}
void loop() {
if (wifi) webserver.handleClient();
if (wifi && radio.rds.correctPI != 0) sendUDPlog();
if (wifi) {
webserver.handleClient();
sendUDPlog();
if (wifi && millis() >= NTPtimer + 1800000) {
NTPupdate();
NTPtimer = millis();
if (millis() >= NTPtimer + 1800000) {
NTPupdate();
NTPtimer = millis();
}
}
if (hardwaremodel == PORTABLE_TOUCH_ILI9341 && touch_detect) {