summaryrefslogtreecommitdiff
path: root/gr-analog/python/qa_pll_carriertracking.py
diff options
context:
space:
mode:
authorTom Rondeau <trondeau@vt.edu>2012-11-06 14:28:22 -0500
committerTom Rondeau <trondeau@vt.edu>2012-11-06 14:40:43 -0500
commitfd110bdbbe8bc40781c34f33c70deec5b7931109 (patch)
treeef18e813add19b09c57cc21cb672ea602701405b /gr-analog/python/qa_pll_carriertracking.py
parent0c9c16fb008b02a5af39fb22e18acfff2dbd933a (diff)
analog: Removing reference to gr.sig_source_X and gr.noise_source_X where possible.
Passing make and make test. Examples and apps need testing. gr-filter relies on sig_source and noise_source, so can't remove them from core.
Diffstat (limited to 'gr-analog/python/qa_pll_carriertracking.py')
-rwxr-xr-xgr-analog/python/qa_pll_carriertracking.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-analog/python/qa_pll_carriertracking.py b/gr-analog/python/qa_pll_carriertracking.py
index a292059d1b..e383639d49 100755
--- a/gr-analog/python/qa_pll_carriertracking.py
+++ b/gr-analog/python/qa_pll_carriertracking.py
@@ -141,7 +141,7 @@ class test_pll_carriertracking(gr_unittest.TestCase):
maxf = 1
minf = -1
- src = gr.sig_source_c(sampling_freq, gr.GR_COS_WAVE, freq, 1.0)
+ src = analog.sig_source_c(sampling_freq, analog.GR_COS_WAVE, freq, 1.0)
pll = analog.pll_carriertracking_cc(loop_bw, maxf, minf)
head = gr.head(gr.sizeof_gr_complex, int (freq))
dst = gr.vector_sink_c()