mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-01-24 16:54:45 +01:00
fix low PI RDS callsign decoding
This commit is contained in:
parent
a9e59bdf3c
commit
4b6835141e
@ -408,6 +408,11 @@ namespace rds {
|
||||
rest /= 26;
|
||||
}
|
||||
|
||||
// Pad with As
|
||||
while (restStr.size() < 3) {
|
||||
restStr += 'A';
|
||||
}
|
||||
|
||||
// Reorder chars
|
||||
for (int i = restStr.size() - 1; i >= 0; i--) {
|
||||
callsign += restStr[i];
|
||||
|
Loading…
x
Reference in New Issue
Block a user