diff options
author | Tom Rondeau <trondeau@vt.edu> | 2013-03-17 21:31:47 -0400 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2013-03-17 21:31:47 -0400 |
commit | cabdafcb55423b54b63b711c942d4438b6af1a65 (patch) | |
tree | 4130dbe4ef3f3814baad5e6d7a6f65c19add0657 /gr-audio/examples/python/noise.py | |
parent | 35e94fb8f4f3ead626f6ed28385148475773afc7 (diff) |
cleaning up, converting examples, etc.
Diffstat (limited to 'gr-audio/examples/python/noise.py')
-rwxr-xr-x | gr-audio/examples/python/noise.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-audio/examples/python/noise.py b/gr-audio/examples/python/noise.py index bba9e83eae..b15065cd4e 100755 --- a/gr-audio/examples/python/noise.py +++ b/gr-audio/examples/python/noise.py @@ -44,7 +44,7 @@ class my_top_block(gr.top_block): sample_rate = int(options.sample_rate) ampl = 0.1 - src = gr.glfsr_source_b(32) # Pseudorandom noise source + src = digital.glfsr_source_b(32) # Pseudorandom noise source b2f = digital.chunks_to_symbols_bf([ampl, -ampl], 1) dst = audio.sink(sample_rate, options.audio_output) self.connect(src, b2f, dst) |