Set RDS error indicator less sensitive

This commit is contained in:
Sjef Verhoeven PE5PVB
2024-04-11 14:30:46 +02:00
parent f151473315
commit 303c193033

View File

@@ -399,10 +399,10 @@ void TEF6686::readRDS(byte showrdserrors)
} }
} }
rds.rdsAerror = (((rds.rdsErr >> 14) & 0x03) > 0); rds.rdsAerror = (((rds.rdsErr >> 14) & 0x03) > 1);
rds.rdsBerror = (((rds.rdsErr >> 12) & 0x03) > 0); rds.rdsBerror = (((rds.rdsErr >> 12) & 0x03) > 1);
rds.rdsCerror = (((rds.rdsErr >> 10) & 0x03) > 0); rds.rdsCerror = (((rds.rdsErr >> 10) & 0x03) > 1);
rds.rdsDerror = (((rds.rdsErr >> 8) & 0x03) > 0); rds.rdsDerror = (((rds.rdsErr >> 8) & 0x03) > 1);
rdsAerrorThreshold = (((rds.rdsErr >> 14) & 0x03) > showrdserrors); rdsAerrorThreshold = (((rds.rdsErr >> 14) & 0x03) > showrdserrors);
rdsBerrorThreshold = (((rds.rdsErr >> 12) & 0x03) > showrdserrors); rdsBerrorThreshold = (((rds.rdsErr >> 12) & 0x03) > showrdserrors);