diff options
author | Tom Rondeau <trondeau@vt.edu> | 2013-02-19 15:03:19 -0500 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2013-02-19 20:10:32 -0500 |
commit | 43adf2bff2e7c05f407b86d9734f3bb67cdc7914 (patch) | |
tree | 577bf0cc31b50058c05989dd7279cdeee3bead90 /gr-analog/python/nbfm_tx.py | |
parent | a5bb5783fb20a4f136650c00d3fd94bb28add738 (diff) |
uhd: fixing incorrect module names for UHD examples.
Diffstat (limited to 'gr-analog/python/nbfm_tx.py')
-rw-r--r-- | gr-analog/python/nbfm_tx.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gr-analog/python/nbfm_tx.py b/gr-analog/python/nbfm_tx.py index eed5bc08d0..62b56bae52 100644 --- a/gr-analog/python/nbfm_tx.py +++ b/gr-analog/python/nbfm_tx.py @@ -88,5 +88,6 @@ class ctcss_gen_f(gr.hier_block2): gr.io_signature(0, 0, 0), # Input signature gr.io_signature(1, 1, gr.sizeof_float)) # Output signature - self.plgen = analog.sig_source_f(sample_rate, gr.GR_SIN_WAVE, tone_freq, 0.1, 0.0) + self.plgen = analog.sig_source_f(sample_rate, analog.GR_SIN_WAVE, + tone_freq, 0.1, 0.0) self.connect(self.plgen, self) |