diff options
author | Tom Rondeau <trondeau@vt.edu> | 2012-11-09 18:08:12 -0500 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2012-11-09 18:08:12 -0500 |
commit | 0b1d665833530ff9120f55e132f95aa8013cefa2 (patch) | |
tree | f3df6b8deccb7c1a1c8fd66be908cea6893d7b33 /gr-filter/examples/resampler.py | |
parent | 2553961b6e6a2543a81463b9a1ad2a44bf11bdf6 (diff) |
analog: fixed a few build issues against gr-analog.
Diffstat (limited to 'gr-filter/examples/resampler.py')
-rwxr-xr-x | gr-filter/examples/resampler.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-filter/examples/resampler.py b/gr-filter/examples/resampler.py index d5fd9216f6..5efb435631 100755 --- a/gr-filter/examples/resampler.py +++ b/gr-filter/examples/resampler.py @@ -52,8 +52,8 @@ class mytb(gr.top_block): # Creating our own taps taps = gr.firdes.low_pass_2(32, 32, 0.25, 0.1, 80) - self.src = analog.sig_source_c(fs_in, analog..GR_SIN_WAVE, fc, 1) - #self.src = analog..noise_source_c(analog..GR_GAUSSIAN, 1) + self.src = analog.sig_source_c(fs_in, analog.GR_SIN_WAVE, fc, 1) + #self.src = analog.noise_source_c(analog.GR_GAUSSIAN, 1) self.head = gr.head(gr.sizeof_gr_complex, N) # A resampler with our taps |