Add 30Hz high-pass IIR filter for wideband FM.

This commit is contained in:
Jared Boone 2016-01-01 20:55:00 -08:00
parent 9a0fb2cab7
commit 2e90edbf39
2 changed files with 7 additions and 1 deletions

View file

@ -49,7 +49,7 @@ private:
const fir_taps_real<64>& audio_filter_taps = taps_64_lp_156_198;
dsp::decimate::FIR64AndDecimateBy2Real audio_filter { audio_filter_taps.taps };
IIRBiquadFilter audio_hpf { audio_hpf_config };
IIRBiquadFilter audio_hpf { audio_hpf_30hz_config };
};
#endif/*__PROC_WFM_AUDIO_H__*/