Added experimental UDP log broadcast. Re-added RT to logbook

This commit is contained in:
Sjef Verhoeven PE5PVB
2025-01-23 11:01:16 +01:00
parent 20d1f6bf41
commit 228429489f
3 changed files with 97 additions and 13 deletions
+12 -9
View File
@@ -1013,16 +1013,19 @@ void loop() {
DoMemoryPosTune();
ShowMemoryPos();
} else {
if (!autologged && autolog && RDSstatus && radio.rds.correctPI != 0) {
switch (addRowToCSV()) {
case 0: ShowFreq(2); break;
case 1: ShowFreq(3); break;
case 2: ShowFreq(4); break;
}
if (!autologged && RDSstatus && radio.rds.correctPI != 0) {
if (autolog) {
switch (addRowToCSV()) {
case 0: ShowFreq(2); break;
case 1: ShowFreq(3); break;
case 2: ShowFreq(4); break;
}
delay(200);
while (digitalRead(ROTARY_BUTTON) == LOW) delay(50);
ShowFreq(0);
delay(200);
while (digitalRead(ROTARY_BUTTON) == LOW) delay(50);
ShowFreq(0);
}
if (wifi) sendUDPlog();
autologged = true;
}
TuneUp();