summaryrefslogtreecommitdiff
path: root/gr-digital/python/qa_pfb_clock_sync.py
diff options
context:
space:
mode:
authorTom Rondeau <trondeau@vt.edu>2012-07-06 18:25:14 -0400
committerTom Rondeau <trondeau@vt.edu>2012-07-06 18:25:14 -0400
commit132121f310f3576ece5ee4b66e80653e9e81f41e (patch)
tree9322937851ca3332f12e8bd10fbde2bf9f6f102e /gr-digital/python/qa_pfb_clock_sync.py
parentee59ee2864254fc6a6788083fcaae46bea2fa877 (diff)
digital: updated mpsk_receiver and pfb_clock_sync_{fff,ccf} to use gr-filter.
Diffstat (limited to 'gr-digital/python/qa_pfb_clock_sync.py')
-rwxr-xr-xgr-digital/python/qa_pfb_clock_sync.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/gr-digital/python/qa_pfb_clock_sync.py b/gr-digital/python/qa_pfb_clock_sync.py
index 06c8a60ba7..cb874c2a66 100755
--- a/gr-digital/python/qa_pfb_clock_sync.py
+++ b/gr-digital/python/qa_pfb_clock_sync.py
@@ -21,6 +21,7 @@
#
from gnuradio import gr, gr_unittest
+from gnuradio import filter
import digital_swig as digital
import random, cmath
@@ -62,7 +63,7 @@ class test_pfb_clock_sync(gr_unittest.TestCase):
1.0, # symbol rate
excess_bw, # excess bandwidth (roll-off factor)
ntaps)
- self.rrc_filter = gr.pfb_arb_resampler_ccf(sps, rrc_taps)
+ self.rrc_filter = filter.pfb_arb_resampler_ccf(sps, rrc_taps)
self.snk = gr.vector_sink_c()
@@ -115,7 +116,7 @@ class test_pfb_clock_sync(gr_unittest.TestCase):
1.0, # symbol rate
excess_bw, # excess bandwidth (roll-off factor)
ntaps)
- self.rrc_filter = gr.pfb_arb_resampler_fff(sps, rrc_taps)
+ self.rrc_filter = filter.pfb_arb_resampler_fff(sps, rrc_taps)
self.snk = gr.vector_sink_f()