1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-03 06:24:48 -04:00

Class to handle amateur radio callsigns and corresponding country data. Part of #2008

This commit is contained in:
f4exb
2024-03-07 14:48:54 +01:00
parent bcc455b143
commit 56f3cfb769
6 changed files with 14 additions and 2 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"
"Test type: decimateii, decimatefi, decimateff, decimateif, decimateinfii, decimatesupii, ambe, golay2312, ft8, callsign"
"test",
"decimateii"),
m_nbSamplesOption(QStringList() << "n" << "nb-samples",
@@ -147,6 +147,8 @@ ParserBench::TestType ParserBench::getTestType() const
return TestGolay2312;
} else if (m_testStr == "ft8") {
return TestFT8;
} else if (m_testStr == "callsign") {
return TestCallsign;
} else {
return TestDecimatorsII;
}