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-analog/examples | |
parent | 35e94fb8f4f3ead626f6ed28385148475773afc7 (diff) |
cleaning up, converting examples, etc.
Diffstat (limited to 'gr-analog/examples')
-rwxr-xr-x | gr-analog/examples/fmtest.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gr-analog/examples/fmtest.py b/gr-analog/examples/fmtest.py index 359b05ba04..327da8eacb 100755 --- a/gr-analog/examples/fmtest.py +++ b/gr-analog/examples/fmtest.py @@ -24,6 +24,7 @@ from gnuradio import gr from gnuradio import blocks from gnuradio import filter from gnuradio import analog +from gnuradio import channels import sys, math, time try: @@ -86,7 +87,7 @@ class fmtest(gr.top_block): self.head = blocks.head(gr.sizeof_gr_complex, self._nsamples) self.snk_tx = blocks.vector_sink_c() - self.channel = filter.channel_model(0.1) + self.channel = channels.channel_model(0.1) self.connect(self.sum, self.head, self.channel, self.snk_tx) |