mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-01-26 01:34:43 +01:00
Added RDS error correction (still needs better clock recovery)
This commit is contained in:
parent
bdd4998b1b
commit
96f5b37f76
@ -53,8 +53,10 @@ namespace rds {
|
|||||||
const int BLOCK_LEN = 26;
|
const int BLOCK_LEN = 26;
|
||||||
const int DATA_LEN = 16;
|
const int DATA_LEN = 16;
|
||||||
const int POLY_LEN = 10;
|
const int POLY_LEN = 10;
|
||||||
const uint16_t LFSR_POLY = 0x5B9;
|
|
||||||
const uint16_t IN_POLY = 0x31B;
|
// 9876543210
|
||||||
|
const uint16_t LFSR_POLY = 0b0110111001;
|
||||||
|
const uint16_t IN_POLY = 0b1100011011;
|
||||||
|
|
||||||
void RDSDecoder::process(uint8_t* symbols, int count) {
|
void RDSDecoder::process(uint8_t* symbols, int count) {
|
||||||
for (int i = 0; i < count; i++) {
|
for (int i = 0; i < count; i++) {
|
||||||
@ -71,10 +73,6 @@ namespace rds {
|
|||||||
auto synIt = SYNDROMES.find(syn);
|
auto synIt = SYNDROMES.find(syn);
|
||||||
bool knownSyndrome = synIt != SYNDROMES.end();
|
bool knownSyndrome = synIt != SYNDROMES.end();
|
||||||
sync = std::clamp<int>(knownSyndrome ? ++sync : --sync, 0, 4);
|
sync = std::clamp<int>(knownSyndrome ? ++sync : --sync, 0, 4);
|
||||||
|
|
||||||
// if (knownSyndrome) {
|
|
||||||
// printf("Found known syn: %04X\n", syn);
|
|
||||||
// }
|
|
||||||
|
|
||||||
// If we're still no longer in sync, try to resync
|
// If we're still no longer in sync, try to resync
|
||||||
if (!sync) { continue; }
|
if (!sync) { continue; }
|
||||||
@ -89,9 +87,7 @@ namespace rds {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Save block while correcting errors (NOT YET)
|
// Save block while correcting errors (NOT YET)
|
||||||
blocks[type] = shiftReg;//correctErrors(shiftReg, type);
|
blocks[type] = correctErrors(shiftReg, type, blockAvail[type]);
|
||||||
|
|
||||||
//printf("Block type: %d, Sync: %d, KnownSyndrome: %s, contGroup: %d, offset: %d\n", type, sync, knownSyndrome ? "yes" : "no", contGroup, i);
|
|
||||||
|
|
||||||
// Update continous group count
|
// Update continous group count
|
||||||
if (type == BLOCK_TYPE_A) { contGroup = 1; }
|
if (type == BLOCK_TYPE_A) { contGroup = 1; }
|
||||||
@ -121,14 +117,14 @@ namespace rds {
|
|||||||
return syn;
|
return syn;
|
||||||
}
|
}
|
||||||
|
|
||||||
uint32_t RDSDecoder::correctErrors(uint32_t block, BlockType type) {
|
uint32_t RDSDecoder::correctErrors(uint32_t block, BlockType type, bool& recovered) {
|
||||||
|
// Subtract the offset from block
|
||||||
|
block ^= (uint32_t)OFFSETS[type];
|
||||||
|
|
||||||
// Init the syndrome and output
|
// Init the syndrome and output
|
||||||
uint16_t syn = 0;
|
uint16_t syn = 0;
|
||||||
uint32_t out = block;
|
uint32_t out = block;
|
||||||
|
|
||||||
// Subtract the offset from block
|
|
||||||
block ^= (uint32_t)OFFSETS[type];
|
|
||||||
|
|
||||||
// Feed in the data
|
// Feed in the data
|
||||||
for (int i = BLOCK_LEN - 1; i >= 0; i--) {
|
for (int i = BLOCK_LEN - 1; i >= 0; i--) {
|
||||||
// Shift the syndrome and keep the output
|
// Shift the syndrome and keep the output
|
||||||
@ -142,27 +138,33 @@ namespace rds {
|
|||||||
syn ^= IN_POLY * ((block >> i) & 1);
|
syn ^= IN_POLY * ((block >> i) & 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Use the syndrome register to do error correction
|
uint16_t firstSyn = syn;
|
||||||
// TODO: For some reason there's always zeros in the syn when starting
|
|
||||||
|
// Use the syndrome register to do error correction if errors are present
|
||||||
uint8_t errorFound = 0;
|
uint8_t errorFound = 0;
|
||||||
for (int i = DATA_LEN - 1; i >= 0; i--) {
|
if (syn) {
|
||||||
// Check if the 5 leftmost bits are all zero
|
for (int i = DATA_LEN - 1; i >= 0; i--) {
|
||||||
errorFound |= !(syn & 0b11111);
|
// Check if the 5 leftmost bits are all zero
|
||||||
|
errorFound |= !(syn & 0b11111);
|
||||||
|
|
||||||
// Write output
|
// Write output
|
||||||
uint8_t outBit = (syn >> (POLY_LEN - 1)) & 1;
|
uint8_t outBit = (syn >> (POLY_LEN - 1)) & 1;
|
||||||
out ^= (errorFound & outBit) << (i + POLY_LEN);
|
out ^= (errorFound & outBit) << (i + POLY_LEN);
|
||||||
|
|
||||||
// Shift syndrome
|
// Shift syndrome
|
||||||
syn = (syn << 1) & 0b1111111111;
|
syn = (syn << 1) & 0b1111111111;
|
||||||
syn ^= LFSR_POLY * outBit * !errorFound;
|
syn ^= LFSR_POLY * outBit * !errorFound;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
recovered = !(syn & 0b11111);
|
||||||
|
|
||||||
// TODO: mark block as irrecoverable if too damaged
|
// // One last check
|
||||||
|
// if (errorFound) {
|
||||||
if (errorFound) {
|
// printf("Error found: %04X -> %04X, %08X -> %08X\n", firstSyn, syn, block, out);
|
||||||
printf("Error found\n");
|
// }
|
||||||
}
|
// else if (!recovered) {
|
||||||
|
// printf("Non recoverable error\n");
|
||||||
|
// }
|
||||||
|
|
||||||
return out;
|
return out;
|
||||||
}
|
}
|
||||||
@ -172,6 +174,9 @@ namespace rds {
|
|||||||
auto now = std::chrono::high_resolution_clock::now();
|
auto now = std::chrono::high_resolution_clock::now();
|
||||||
anyGroupLastUpdate = now;
|
anyGroupLastUpdate = now;
|
||||||
|
|
||||||
|
// Make sure blocks A and B are available
|
||||||
|
if (!blockAvail[BLOCK_TYPE_A] || !blockAvail[BLOCK_TYPE_B]) { return; }
|
||||||
|
|
||||||
// Decode PI code
|
// Decode PI code
|
||||||
countryCode = (blocks[BLOCK_TYPE_A] >> 22) & 0xF;
|
countryCode = (blocks[BLOCK_TYPE_A] >> 22) & 0xF;
|
||||||
programCoverage = (AreaCoverage)((blocks[BLOCK_TYPE_A] >> 18) & 0xF);
|
programCoverage = (AreaCoverage)((blocks[BLOCK_TYPE_A] >> 18) & 0xF);
|
||||||
@ -194,7 +199,7 @@ namespace rds {
|
|||||||
uint8_t diOffset = 3 - offset;
|
uint8_t diOffset = 3 - offset;
|
||||||
uint8_t psOffset = offset * 2;
|
uint8_t psOffset = offset * 2;
|
||||||
|
|
||||||
if (groupVer == GROUP_VER_A) {
|
if (groupVer == GROUP_VER_A && blockAvail[BLOCK_TYPE_C]) {
|
||||||
alternateFrequency = (blocks[BLOCK_TYPE_C] >> 10) & 0xFFFF;
|
alternateFrequency = (blocks[BLOCK_TYPE_C] >> 10) & 0xFFFF;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -203,8 +208,10 @@ namespace rds {
|
|||||||
decoderIdent |= (diBit << diOffset);
|
decoderIdent |= (diBit << diOffset);
|
||||||
|
|
||||||
// Write chars at offset the PSName
|
// Write chars at offset the PSName
|
||||||
programServiceName[psOffset] = (blocks[BLOCK_TYPE_D] >> 18) & 0xFF;
|
if (blockAvail[BLOCK_TYPE_D]) {
|
||||||
programServiceName[psOffset + 1] = (blocks[BLOCK_TYPE_D] >> 10) & 0xFF;
|
programServiceName[psOffset] = (blocks[BLOCK_TYPE_D] >> 18) & 0xFF;
|
||||||
|
programServiceName[psOffset + 1] = (blocks[BLOCK_TYPE_D] >> 10) & 0xFF;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else if (groupType == 2) {
|
else if (groupType == 2) {
|
||||||
group2LastUpdate = now;
|
group2LastUpdate = now;
|
||||||
@ -221,15 +228,21 @@ namespace rds {
|
|||||||
// Write char at offset in Radiotext
|
// Write char at offset in Radiotext
|
||||||
if (groupVer == GROUP_VER_A) {
|
if (groupVer == GROUP_VER_A) {
|
||||||
uint8_t rtOffset = offset * 4;
|
uint8_t rtOffset = offset * 4;
|
||||||
radioText[rtOffset] = (blocks[BLOCK_TYPE_C] >> 18) & 0xFF;
|
if (blockAvail[BLOCK_TYPE_C]) {
|
||||||
radioText[rtOffset + 1] = (blocks[BLOCK_TYPE_C] >> 10) & 0xFF;
|
radioText[rtOffset] = (blocks[BLOCK_TYPE_C] >> 18) & 0xFF;
|
||||||
radioText[rtOffset + 2] = (blocks[BLOCK_TYPE_D] >> 18) & 0xFF;
|
radioText[rtOffset + 1] = (blocks[BLOCK_TYPE_C] >> 10) & 0xFF;
|
||||||
radioText[rtOffset + 3] = (blocks[BLOCK_TYPE_D] >> 10) & 0xFF;
|
}
|
||||||
|
if (blockAvail[BLOCK_TYPE_D]) {
|
||||||
|
radioText[rtOffset + 2] = (blocks[BLOCK_TYPE_D] >> 18) & 0xFF;
|
||||||
|
radioText[rtOffset + 3] = (blocks[BLOCK_TYPE_D] >> 10) & 0xFF;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
uint8_t rtOffset = offset * 2;
|
uint8_t rtOffset = offset * 2;
|
||||||
radioText[rtOffset] = (blocks[BLOCK_TYPE_D] >> 18) & 0xFF;
|
if (blockAvail[BLOCK_TYPE_D]) {
|
||||||
radioText[rtOffset + 1] = (blocks[BLOCK_TYPE_D] >> 10) & 0xFF;
|
radioText[rtOffset] = (blocks[BLOCK_TYPE_D] >> 18) & 0xFF;
|
||||||
|
radioText[rtOffset + 1] = (blocks[BLOCK_TYPE_D] >> 10) & 0xFF;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -138,7 +138,7 @@ namespace rds {
|
|||||||
|
|
||||||
private:
|
private:
|
||||||
static uint16_t calcSyndrome(uint32_t block);
|
static uint16_t calcSyndrome(uint32_t block);
|
||||||
static uint32_t correctErrors(uint32_t block, BlockType type);
|
static uint32_t correctErrors(uint32_t block, BlockType type, bool& recovered);
|
||||||
void decodeGroup();
|
void decodeGroup();
|
||||||
|
|
||||||
bool anyGroupValid();
|
bool anyGroupValid();
|
||||||
@ -152,6 +152,7 @@ namespace rds {
|
|||||||
BlockType lastType = BLOCK_TYPE_A;
|
BlockType lastType = BLOCK_TYPE_A;
|
||||||
int contGroup = 0;
|
int contGroup = 0;
|
||||||
uint32_t blocks[_BLOCK_TYPE_COUNT];
|
uint32_t blocks[_BLOCK_TYPE_COUNT];
|
||||||
|
bool blockAvail[_BLOCK_TYPE_COUNT];
|
||||||
|
|
||||||
// All groups
|
// All groups
|
||||||
std::mutex groupMtx;
|
std::mutex groupMtx;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user