Changeset 7653
- Timestamp:
- 02/13/08 10:56:13
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
gnuradio/branches/releases/3.1/gnuradio-core/src/python/gnuradio/blks2impl/nbfm_rx.py
r6466 r7653 76 76 audio_taps = gr.firdes.low_pass (1.0, # gain 77 77 quad_rate, # sampling rate 78 4.5e3, # Audio LPF cutoff79 2.5e3, # Transition band78 2.7e3, # Audio LPF cutoff 79 0.5e3, # Transition band 80 80 gr.firdes.WIN_HAMMING) # filter type 81 81 gnuradio/branches/releases/3.1/gnuradio-examples/python/usrp/usrp_nbfm_rcv.py
r6466 r7653 274 274 chan_coeffs = gr.firdes.low_pass (1.0, # gain 275 275 self.if_rate, # sampling rate 276 13e3, # low pass cutoff freq277 4e3, # width of trans. band276 8e3, # low pass cutoff freq 277 2e3, # width of trans. band 278 278 gr.firdes.WIN_HANN) # filter type 279 279
