1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-02 14:04:46 -04:00

FT8 demod: implement callback as an interface class. Added test .wav file and file option in the sdrbench options

This commit is contained in:
f4exb
2023-01-09 00:38:15 +01:00
parent 23e01ea064
commit 7cd08ef1e9
8 changed files with 101 additions and 28 deletions
+3 -2
View File
@@ -46,7 +46,8 @@ void MainBench::run()
<< " testType: " << (int) m_parser.getTestType()
<< " nsamples: " << m_parser.getNbSamples()
<< " repet: " << m_parser.getRepetition()
<< " log2f: " << m_parser.getLog2Factor();
<< " log2f: " << m_parser.getLog2Factor()
<< " file: " << m_parser.getFileName();
if (m_parser.getTestType() == ParserBench::TestDecimatorsII) {
testDecimateII();
@@ -63,7 +64,7 @@ void MainBench::run()
} else if (m_parser.getTestType() == ParserBench::TestGolay2312) {
testGolay2312();
} else if (m_parser.getTestType() == ParserBench::TestFT8) {
testFT8();
testFT8(m_parser.getFileName());
} else {
qDebug() << "MainBench::run: unknown test type: " << m_parser.getTestType();
}