1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-04 06:54:39 -04:00

FT8: implement Gray decoding when decoding from magnitudes

This commit is contained in:
f4exb
2024-04-06 10:46:39 +02:00
parent 1691a3dfb3
commit cd7f0c16c4
3 changed files with 35 additions and 2 deletions
+2 -1
View File
@@ -322,7 +322,8 @@ void TestFT8Protocols::testSoftDecode(const QStringList& argElements)
}
symbol = symbol % symbolSize;
magSymbols[symbol] += 0.01;
symbol = symbol ^(symbol >> 1); // Gray code
magSymbols[symbol] += 0.015;
mags.push_back(magSymbols);
}