commit-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Commit-gnuradio] r7055 - gnuradio/branches/developers/trondeau/ofdm2/gn


From: n4hy
Subject: [Commit-gnuradio] r7055 - gnuradio/branches/developers/trondeau/ofdm2/gnuradio-examples/python/ofdm
Date: Wed, 28 Nov 2007 21:09:04 -0700 (MST)

Author: n4hy
Date: 2007-11-28 21:09:03 -0700 (Wed, 28 Nov 2007)
New Revision: 7055

Modified:
   
gnuradio/branches/developers/trondeau/ofdm2/gnuradio-examples/python/ofdm/benchmark_ofdm.py
Log:
Benchmark includes channel model

Modified: 
gnuradio/branches/developers/trondeau/ofdm2/gnuradio-examples/python/ofdm/benchmark_ofdm.py
===================================================================
--- 
gnuradio/branches/developers/trondeau/ofdm2/gnuradio-examples/python/ofdm/benchmark_ofdm.py
 2007-11-29 04:07:04 UTC (rev 7054)
+++ 
gnuradio/branches/developers/trondeau/ofdm2/gnuradio-examples/python/ofdm/benchmark_ofdm.py
 2007-11-29 04:09:03 UTC (rev 7055)
@@ -71,15 +71,15 @@
 
         #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 = blks2.channel_model(noise_voltage, frequency_offset,
+                                           options.clockrate_ratio, taps)
         self.rxpath = receive_path(callback, options)
                 
         #self.connect(self.zeros, (self.mux,0))
         #self.connect(self.txpath, (self.mux,1))
         #self.connect(self.mux, self.throttle, self.channel, self.rxpath)
         #self.connect(self.mux, self.throttle, self.rxpath)
-        self.connect(self.txpath, self.throttle, self.rxpath)
+        self.connect(self.txpath, self.throttle, self.channel, self.rxpath)
         
         if options.log:
             self.connect(self.txpath, gr.file_sink(gr.sizeof_gr_complex, 
"txpath.dat"))





reply via email to

[Prev in Thread] Current Thread [Next in Thread]