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:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user