summaryrefslogtreecommitdiff
path: root/gnuradio-examples/python
diff options
context:
space:
mode:
authorTom Rondeau2010-12-28 13:31:29 -0500
committerTom Rondeau2010-12-28 13:31:29 -0500
commitcaa6f821a601a37f2be0cc42c8f7fd42f9670b84 (patch)
treecac74fcc9ed2d8d47d7f4cfe9efcd5bea497eb74 /gnuradio-examples/python
parentfd8f86713d8f9de79850b9e7aabde7c453b7e890 (diff)
parent2fa7c997559e173c59227ee14a154e4b462d46bd (diff)
downloadgnuradio-caa6f821a601a37f2be0cc42c8f7fd42f9670b84.tar.gz
gnuradio-caa6f821a601a37f2be0cc42c8f7fd42f9670b84.tar.bz2
gnuradio-caa6f821a601a37f2be0cc42c8f7fd42f9670b84.zip
Merge branch 'master' into next
* master: Under extreme circumstances, optfir might never produce an answer (atten>300), so this puts in a check on the ripple; if it gets too large, stop trying. Allowing PFB interpolator to be called without specifying the taps; autogen taps inside hierblock. Allowing PFB decimator to be called without specifying the taps; autogen taps inside hierblock. PFB channelizer can be specified without external taps. Uses optfir to generate an internal filter to cover the channel bandwidth; user can specify the attenuation of this filter if desired. Updating the arb. resampler to use the optfir filter that provides better specificatiion of stopband atten.
Diffstat (limited to 'gnuradio-examples/python')
-rwxr-xr-xgnuradio-examples/python/pfb/channelize.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnuradio-examples/python/pfb/channelize.py b/gnuradio-examples/python/pfb/channelize.py
index 27d87e558..f845c05c6 100755
--- a/gnuradio-examples/python/pfb/channelize.py
+++ b/gnuradio-examples/python/pfb/channelize.py
@@ -36,7 +36,7 @@ class pfb_top_block(gr.top_block):
# Create a set of taps for the PFB channelizer
self._taps = gr.firdes.low_pass_2(1, self._fs, 475.50, 50,
- attenuation_dB=10, window=gr.firdes.WIN_BLACKMAN_hARRIS)
+ attenuation_dB=100, window=gr.firdes.WIN_BLACKMAN_hARRIS)
# Calculate the number of taps per channel for our own information
tpc = scipy.ceil(float(len(self._taps)) / float(self._M))