diff options
author | Tom Rondeau <trondeau@vt.edu> | 2012-07-06 19:00:26 -0400 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2012-07-06 19:00:26 -0400 |
commit | 01b34d220b5077fef0257d455e13a00daf09545d (patch) | |
tree | 6fee6771e9692a4a7b89b2deade06f2c2714925e /gr-digital/python/qa_cma_equalizer.py | |
parent | f19e03a0be243d19f01468f31342455ddd079e6c (diff) |
filter: bug fixes to use components in gr.filter and others fixes.
QA working for all but CMA and LMS equalizers.
Diffstat (limited to 'gr-digital/python/qa_cma_equalizer.py')
-rwxr-xr-x | gr-digital/python/qa_cma_equalizer.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-digital/python/qa_cma_equalizer.py b/gr-digital/python/qa_cma_equalizer.py index 75fb0f05ed..4632856069 100755 --- a/gr-digital/python/qa_cma_equalizer.py +++ b/gr-digital/python/qa_cma_equalizer.py @@ -21,7 +21,7 @@ # from gnuradio import gr, gr_unittest -import digital_swig +import digital_swig as digital class test_cma_equalizer_fir(gr_unittest.TestCase): @@ -33,7 +33,7 @@ class test_cma_equalizer_fir(gr_unittest.TestCase): def transform(self, src_data): SRC = gr.vector_source_c(src_data, False) - EQU = digital_swig.cma_equalizer_cc(4, 1.0, .001, 1) + EQU = digital.cma_equalizer_cc(4, 1.0, .001, 1) DST = gr.vector_sink_c() self.tb.connect(SRC, EQU, DST) self.tb.run() |