diff options
author | Tom Rondeau <trondeau@vt.edu> | 2012-08-21 18:39:10 -0400 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2012-08-22 21:25:16 -0400 |
commit | 4a60c41913d7ebddf666d24e288533b453ee41ae (patch) | |
tree | 3049d02ab73709e03ca7b18c6a9dfa5ce4dc38f8 /gr-digital/python/cpm.py | |
parent | 5f720e1beb27f7457f20555f8ce1bb8c34c27cbe (diff) |
core: fixing location of some components for the new hierarchy.
ctest and digital examples working again.
Diffstat (limited to 'gr-digital/python/cpm.py')
-rw-r--r-- | gr-digital/python/cpm.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-digital/python/cpm.py b/gr-digital/python/cpm.py index f11832b626..eaefa194cf 100644 --- a/gr-digital/python/cpm.py +++ b/gr-digital/python/cpm.py @@ -24,7 +24,7 @@ # See gnuradio-examples/python/digital for examples -from gnuradio import gr, blks2 +from gnuradio import gr, filter from math import pi import numpy @@ -153,7 +153,7 @@ class cpm_mod(gr.hier_block2): else: raise TypeError, ("cpm_type must be an integer in {0,1,2,3}, is %r" % (cpm_type,)) - self.filter = blks2.pfb_arb_resampler_fff(samples_per_symbol, self.taps) + self.filter = filter.pfb.arb_resampler_fff(samples_per_symbol, self.taps) # FM modulation self.fmmod = gr.frequency_modulator_fc(sensitivity) |