From 9967e2e7664dbc96a5d1587c194cc648d01cf487 Mon Sep 17 00:00:00 2001 From: trondeau <trondeau@221aa14e-8319-0410-a670-987f0aec2ac5> Date: Sat, 4 Aug 2007 15:21:34 +0000 Subject: merged -r5966:6112 on trondeau/ofdm_mod. Allows for generic constellations (supports bpsk, qpsk, 8psk, qam16, qam64, and qam256 currently), fixes some bugs in the correlation and altered default parameters for over-the-air operation. This merge fixes ticket:156 and ticket:157. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@6113 221aa14e-8319-0410-a670-987f0aec2ac5 --- gnuradio-examples/python/ofdm/receive_path.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'gnuradio-examples/python/ofdm/receive_path.py') diff --git a/gnuradio-examples/python/ofdm/receive_path.py b/gnuradio-examples/python/ofdm/receive_path.py index 93e1e59a33..2ebaad8838 100644 --- a/gnuradio-examples/python/ofdm/receive_path.py +++ b/gnuradio-examples/python/ofdm/receive_path.py @@ -47,10 +47,10 @@ class receive_path(gr.hier_block): blks.ofdm_demod(fg, options, callback=self._rx_callback) # Carrier Sensing Blocks - #alpha = 0.001 - #thresh = 30 # in dB, will have to adjust - #self.probe = gr.probe_avg_mag_sqrd_c(thresh,alpha) - #fg.connect(self.chan_filt, self.probe) + alpha = 0.001 + thresh = 30 # in dB, will have to adjust + self.probe = gr.probe_avg_mag_sqrd_c(thresh,alpha) + fg.connect(self.ofdm_rx.ofdm_recv.chan_filt, self.probe) # Display some information about the setup if self._verbose: -- cgit v1.2.3