diff options
author | Josh Blum | 2009-08-24 21:34:25 -0700 |
---|---|---|
committer | Josh Blum | 2009-08-24 21:34:25 -0700 |
commit | 07d9b76e4bf8799d87775bd5546abf1f9ac5c995 (patch) | |
tree | cd1af16d1000f318ba636a754a159c5ee2833ca9 /gnuradio-core | |
parent | b8df6584312f1f03d0bf86375945b8d743b6a6d7 (diff) | |
parent | 9f2ca841018fd24644be39b4400784806015aef2 (diff) | |
download | gnuradio-07d9b76e4bf8799d87775bd5546abf1f9ac5c995.tar.gz gnuradio-07d9b76e4bf8799d87775bd5546abf1f9ac5c995.tar.bz2 gnuradio-07d9b76e4bf8799d87775bd5546abf1f9ac5c995.zip |
Merge branch 'master' of http://gnuradio.org/git/gnuradio into grc
Diffstat (limited to 'gnuradio-core')
-rw-r--r-- | gnuradio-core/src/python/gnuradio/blks2impl/pfb_arb_resampler.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gnuradio-core/src/python/gnuradio/blks2impl/pfb_arb_resampler.py b/gnuradio-core/src/python/gnuradio/blks2impl/pfb_arb_resampler.py index b1b3dfcab..e40d9636a 100644 --- a/gnuradio-core/src/python/gnuradio/blks2impl/pfb_arb_resampler.py +++ b/gnuradio-core/src/python/gnuradio/blks2impl/pfb_arb_resampler.py @@ -24,7 +24,7 @@ from gnuradio import gr class pfb_arb_resampler_ccf(gr.hier_block2): ''' - Convinience wrapper for the polyphase filterbank arbitrary resampler. + Convenience wrapper for the polyphase filterbank arbitrary resampler. The block takes a single complex stream in and outputs a single complex stream out. As such, it requires no extra glue to handle the input/output @@ -45,6 +45,5 @@ class pfb_arb_resampler_ccf(gr.hier_block2): self.connect(self, self.pfb) self.connect(self.pfb, self) - - - + def set_taps(self, taps): + self.pfb.set_taps(taps) |