mirror of
https://github.com/g4klx/MMDVM.git
synced 2026-04-19 21:35:08 +00:00
Revert "Testing low pass filter for P25 RX"
This reverts commit 68dfdf0c21.
This commit is contained in:
parent
2506690e98
commit
a2cf35629b
2 changed files with 31 additions and 14 deletions
6
IO.h
6
IO.h
|
|
@ -61,11 +61,13 @@ private:
|
|||
CRSSIRB m_rssiBuffer;
|
||||
|
||||
arm_fir_instance_q15 m_rrcFilter;
|
||||
arm_fir_instance_q15 m_rcFilter;
|
||||
arm_fir_instance_q15 m_gaussianFilter;
|
||||
arm_fir_instance_q15 m_lpFilter;
|
||||
arm_fir_instance_q15 m_boxcarFilter;
|
||||
q15_t m_rrcState[70U]; // NoTaps + BlockSize - 1, 42 + 20 - 1 plus some spare
|
||||
q15_t m_rcState[70U]; // NoTaps + BlockSize - 1, 42 + 20 - 1 plus some spare
|
||||
q15_t m_gaussianState[40U]; // NoTaps + BlockSize - 1, 12 + 20 - 1 plus some spare
|
||||
q15_t m_lpState[40U]; // NoTaps + BlockSize - 1, 18 + 20 - 1 plus some spare
|
||||
q15_t m_boxcarState[30U]; // NoTaps + BlockSize - 1, 6 + 20 - 1 plus some spare
|
||||
|
||||
bool m_pttInvert;
|
||||
q15_t m_rxLevel;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue