diff options
author | Tom Rondeau <trondeau@vt.edu> | 2013-03-18 13:13:48 -0400 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2013-03-18 13:13:48 -0400 |
commit | 0183e3ed10c551fefdbb0ed095d896cf01699a54 (patch) | |
tree | 788ff905a1299f948ed6908d7076a7caad17c5f1 /gr-digital/examples/gen_whitener.py | |
parent | d26514b07a5d15206687b636a2a0c51ad10684c1 (diff) |
blocks: removing lfsr and friends from core; now in gr-blocks.
Diffstat (limited to 'gr-digital/examples/gen_whitener.py')
-rwxr-xr-x | gr-digital/examples/gen_whitener.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-digital/examples/gen_whitener.py b/gr-digital/examples/gen_whitener.py index 0e8a97bf2b..63616605ba 100755 --- a/gr-digital/examples/gen_whitener.py +++ b/gr-digital/examples/gen_whitener.py @@ -37,7 +37,7 @@ class my_graph(gr.top_block): parser.print_help() raise SystemExit, 1 - src = gr.lfsr_32k_source_s() + src = blocks.lfsr_32k_source_s() head = blocks.head(gr.sizeof_short, 2048) self.dst = blocks.vector_sink_s() self.connect(src, head, self.dst) |