POCSAG Squelch and Filtering (#1424)

* Disable audio processing when not using squelch
* Add 2k4 lowpass fitler for 24Khz audio for POCSAG
This commit is contained in:
Kyle Reed 2023-08-30 10:24:35 -07:00 committed by GitHub
parent f46e20c977
commit 07be74701f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 18 additions and 7 deletions

View file

@ -215,6 +215,8 @@ class POCSAGProcessor : public BasebandProcessor {
int m_numCode{0};
bool m_inverted{false};
bool use_squelch_ = false;
/* NB: Threads should be the last members in the class definition. */
BasebandThread baseband_thread{baseband_fs, this, baseband::Direction::Receive};
RSSIThread rssi_thread{};