1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-07-30 05:54:26 -04:00

FT8 demod: unwanted dependencies removal and unpacking reorganization

This commit is contained in:
f4exb
2023-01-11 04:49:16 +01:00
parent 60debc5d83
commit 508da7da9c
8 changed files with 103 additions and 58 deletions
+2 -1
View File
@@ -53,6 +53,7 @@ public:
private:
QMutex cycle_mu;
std::map<std::string, bool> cycle_already;
FT8::Packing packing;
};
@@ -69,7 +70,7 @@ int TestFT8Callback::hcb(
std::string call1;
std::string call2;
std::string loc;
std::string msg = FT8::unpack(a91, call1, call2, loc);
std::string msg = packing.unpack(a91, call1, call2, loc);
cycle_mu.lock();