Bugfix Stationlist

- ID was not always send
- When screenmute is active, the RDS info was not send.
This commit is contained in:
Sjef Verhoeven PE5PVB
2023-08-17 14:05:58 +02:00
parent 4cbcadcfb8
commit 14c8767f5f
3 changed files with 146 additions and 111 deletions
+14 -14
View File
@@ -887,27 +887,27 @@ void loop() {
void GetData() {
if (band < BAND_GAP) ShowStereoStatus();
if (!screenmute) {
if (band < BAND_GAP) {
if (advancedRDS && !afscreen) ShowAdvancedRDS();
if (afscreen) ShowAFEON();
if (!afscreen)
{
showPTY();
if (millis() >= tuningtimer + 200) doAF();
if (millis() >= tuningtimer + 200) showECC();
showRadioText();
}
showPI();
showPS();
if (band < BAND_GAP) {
if (advancedRDS && !afscreen && !screenmute) ShowAdvancedRDS();
if (afscreen && !screenmute) ShowAFEON();
if (!afscreen)
{
showPTY();
if (millis() >= tuningtimer + 200) doAF();
if (millis() >= tuningtimer + 200) showECC();
showRadioText();
}
showPI();
showPS();
}
if (!screenmute) {
ShowRSSI();
if (millis() >= tuningtimer + 200) ShowBattery();
ShowOffset();
if (!afscreen) ShowSignalLevel();
ShowBW();
updateCodetect();
}
if (!afscreen) ShowSignalLevel();
}
void WakeToSleep(bool yes) {