diff options
Diffstat (limited to 'gr-uhd/examples/python/usrp_am_mw_rcv.py')
-rwxr-xr-x | gr-uhd/examples/python/usrp_am_mw_rcv.py | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/gr-uhd/examples/python/usrp_am_mw_rcv.py b/gr-uhd/examples/python/usrp_am_mw_rcv.py index 9d359a4cf8..02863b32fd 100755 --- a/gr-uhd/examples/python/usrp_am_mw_rcv.py +++ b/gr-uhd/examples/python/usrp_am_mw_rcv.py @@ -20,8 +20,6 @@ # Boston, MA 02110-1301, USA. # -#FIX gain - from gnuradio import gr, eng_notation, optfir from gnuradio import audio from gnuradio import uhd @@ -140,10 +138,8 @@ class wfm_rx_block (stdgui2.std_top_block): if options.gain is None: g = self.u.get_gain_range() - if True: - # if no gain was specified, use the mid gain - options.gain = (g.start() + g.stop())/2.0 - options.gain = g.stop() + # if no gain was specified, use the mid gain + options.gain = (g.start() + g.stop())/2.0 if options.volume is None: v = self.volume_range() |