Small change in AF detector. Stations need to transmit number of AF's, otherwise AF is ignored

This commit is contained in:
Sjef Verhoeven PE5PVB
2023-12-30 22:36:01 +01:00
parent e4e4bffe6e
commit 6dc1841d91

View File

@@ -623,7 +623,7 @@ void TEF6686::readRDS(byte showrdserrors)
//AF decoder
if (rdsblock == 0 && rds.rdsC != rdsCold) { // Only when in GROUP 0A
if (((rds.rdsC >> 8) > 224 && (rds.rdsC >> 8) < 250) || (rds.sortaf && (rds.rdsC >> 8) > 0 && (rds.rdsC >> 8) < 205)) {
if ((rds.rdsC >> 8) > 224 && (rds.rdsC >> 8) < 250) {
afinit = true; // AF detected
rds.hasAF = true;
}