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

FT8: add encoding support to library and added more tests

This commit is contained in:
f4exb
2024-03-28 15:15:48 +01:00
parent c833432675
commit 2e9fc9db64
21 changed files with 1330 additions and 493 deletions
+3 -1
View File
@@ -24,7 +24,7 @@
ParserBench::ParserBench() :
m_testOption(QStringList() << "t" << "test",
"Test type: decimateii, decimatefi, decimateff, decimateif, decimateinfii, decimatesupii, ambe, golay2312, ft8, callsign"
"Test type: decimateii, decimatefi, decimateff, decimateif, decimateinfii, decimatesupii, ambe, golay2312, ft8, ft8protocols, callsign"
"test",
"decimateii"),
m_nbSamplesOption(QStringList() << "n" << "nb-samples",
@@ -149,6 +149,8 @@ ParserBench::TestType ParserBench::getTestType() const
return TestFT8;
} else if (m_testStr == "callsign") {
return TestCallsign;
} else if (m_testStr == "ft8protocols") {
return TestFT8Protocols;
} else {
return TestDecimatorsII;
}