You've already forked TEF6686_ESP32
Set RDS error detector to uncorrectable only
This commit is contained in:
@@ -399,10 +399,10 @@ void TEF6686::readRDS(byte showrdserrors)
|
||||
}
|
||||
}
|
||||
|
||||
rds.rdsAerror = (((rds.rdsErr >> 14) & 0x03) > 1);
|
||||
rds.rdsBerror = (((rds.rdsErr >> 12) & 0x03) > 1);
|
||||
rds.rdsCerror = (((rds.rdsErr >> 10) & 0x03) > 1);
|
||||
rds.rdsDerror = (((rds.rdsErr >> 8) & 0x03) > 1);
|
||||
rds.rdsAerror = (((rds.rdsErr >> 14) & 0x03) > 2);
|
||||
rds.rdsBerror = (((rds.rdsErr >> 12) & 0x03) > 2);
|
||||
rds.rdsCerror = (((rds.rdsErr >> 10) & 0x03) > 2);
|
||||
rds.rdsDerror = (((rds.rdsErr >> 8) & 0x03) > 2);
|
||||
|
||||
rdsAerrorThreshold = (((rds.rdsErr >> 14) & 0x03) > showrdserrors);
|
||||
rdsBerrorThreshold = (((rds.rdsErr >> 12) & 0x03) > showrdserrors);
|
||||
|
||||
Reference in New Issue
Block a user