summaryrefslogtreecommitdiff
path: root/gnuradio-examples/python/ofdm
diff options
context:
space:
mode:
authorjcorgan2009-04-16 07:54:34 +0000
committerjcorgan2009-04-16 07:54:34 +0000
commit6556095628428156c790b1bd9be67dc3e4c0a797 (patch)
treea6a7ba667f03be27f0529f3f5ce1d10883c72c05 /gnuradio-examples/python/ofdm
parentfcc7d7047805520c987fbb4f503538eccd659f34 (diff)
downloadgnuradio-6556095628428156c790b1bd9be67dc3e4c0a797.tar.gz
gnuradio-6556095628428156c790b1bd9be67dc3e4c0a797.tar.bz2
gnuradio-6556095628428156c790b1bd9be67dc3e4c0a797.zip
Change our examples to use gr.channel_model instead of blks2.channel_model
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10861 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'gnuradio-examples/python/ofdm')
-rwxr-xr-xgnuradio-examples/python/ofdm/benchmark_ofdm.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/gnuradio-examples/python/ofdm/benchmark_ofdm.py b/gnuradio-examples/python/ofdm/benchmark_ofdm.py
index 5861da16c..6d6ca9f2a 100755
--- a/gnuradio-examples/python/ofdm/benchmark_ofdm.py
+++ b/gnuradio-examples/python/ofdm/benchmark_ofdm.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python
#
-# Copyright 2006, 2007 Free Software Foundation, Inc.
+# Copyright 2006, 2007, 2009 Free Software Foundation, Inc.
#
# This file is part of GNU Radio
#
@@ -71,8 +71,8 @@ class my_top_block(gr.top_block):
#self.mux = gr.stream_mux(gr.sizeof_gr_complex, stream_size)
self.throttle = gr.throttle(gr.sizeof_gr_complex, options.sample_rate)
- self.channel = blks2.channel_model(noise_voltage, frequency_offset,
- options.clockrate_ratio, taps)
+ self.channel = gr.channel_model(noise_voltage, frequency_offset,
+ options.clockrate_ratio, taps)
self.rxpath = receive_path(callback, options)
#self.connect(self.zeros, (self.mux,0))