diff options
author | matt <matt@221aa14e-8319-0410-a670-987f0aec2ac5> | 2008-01-26 01:30:37 +0000 |
---|---|---|
committer | matt <matt@221aa14e-8319-0410-a670-987f0aec2ac5> | 2008-01-26 01:30:37 +0000 |
commit | 0ffca9f47759a616e6fc6aaf7c2ab642601935d1 (patch) | |
tree | 75de090faf9a30ee6ae07d75bbf81943a483559d /gnuradio-examples/python/usrp/usrp_nbfm_rcv.py | |
parent | df4979365e72f36f048e30a0b388e777c7c9a7a9 (diff) |
better filter bandwidths
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@7519 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'gnuradio-examples/python/usrp/usrp_nbfm_rcv.py')
-rwxr-xr-x | gnuradio-examples/python/usrp/usrp_nbfm_rcv.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnuradio-examples/python/usrp/usrp_nbfm_rcv.py b/gnuradio-examples/python/usrp/usrp_nbfm_rcv.py index c63bef0c4e..7aa45575d6 100755 --- a/gnuradio-examples/python/usrp/usrp_nbfm_rcv.py +++ b/gnuradio-examples/python/usrp/usrp_nbfm_rcv.py @@ -273,8 +273,8 @@ class receive_path(gr.hier_block2): # Create filter to get actual channel we want chan_coeffs = gr.firdes.low_pass (1.0, # gain self.if_rate, # sampling rate - 13e3, # low pass cutoff freq - 4e3, # width of trans. band + 8e3, # low pass cutoff freq + 2e3, # width of trans. band gr.firdes.WIN_HANN) # filter type print "len(rx_chan_coeffs) =", len(chan_coeffs) |