From 4a60c41913d7ebddf666d24e288533b453ee41ae Mon Sep 17 00:00:00 2001 From: Tom Rondeau <trondeau@vt.edu> Date: Tue, 21 Aug 2012 18:39:10 -0400 Subject: core: fixing location of some components for the new hierarchy. ctest and digital examples working again. --- gr-digital/python/cpm.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gr-digital/python/cpm.py') 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) -- cgit v1.2.3