diff options
Diffstat (limited to 'gnuradio-examples/python/ofdm/receive_path.py')
-rw-r--r-- | gnuradio-examples/python/ofdm/receive_path.py | 8 |
1 files changed, 4 insertions, 4 deletions
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: |