Set RDS error detector to uncorrectable only

This commit is contained in:
Sjef Verhoeven PE5PVB
2024-04-17 11:40:48 +02:00
parent 85f084dec9
commit 52f32e794a

View File

@@ -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);