mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2024-12-26 10:58:29 +01:00
M17 decoder bugfix
This commit is contained in:
parent
efd3c47a6c
commit
48f6642c70
@ -89,16 +89,18 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
~M17DecoderModule() {
|
~M17DecoderModule() {
|
||||||
|
gui::menu.removeEntry(name);
|
||||||
// Stop DSP Here
|
// Stop DSP Here
|
||||||
|
stream.stop();
|
||||||
|
if (enabled) {
|
||||||
decoder.stop();
|
decoder.stop();
|
||||||
resamp.stop();
|
resamp.stop();
|
||||||
reshape.stop();
|
reshape.stop();
|
||||||
diagHandler.stop();
|
diagHandler.stop();
|
||||||
|
|
||||||
stream.stop();
|
|
||||||
|
|
||||||
sigpath::vfoManager.deleteVFO(vfo);
|
sigpath::vfoManager.deleteVFO(vfo);
|
||||||
gui::menu.removeEntry(name);
|
}
|
||||||
|
|
||||||
|
sigpath::sinkManager.unregisterStream(name);
|
||||||
}
|
}
|
||||||
|
|
||||||
void postInit() {}
|
void postInit() {}
|
||||||
@ -288,7 +290,7 @@ private:
|
|||||||
|
|
||||||
M17LSF lsf;
|
M17LSF lsf;
|
||||||
std::mutex lsfMtx;
|
std::mutex lsfMtx;
|
||||||
std::chrono::steady_clock::time_point lastUpdated;
|
std::chrono::system_clock::time_point lastUpdated;
|
||||||
};
|
};
|
||||||
|
|
||||||
MOD_EXPORT void _INIT_() {
|
MOD_EXPORT void _INIT_() {
|
||||||
|
Loading…
Reference in New Issue
Block a user