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 | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gr-uhd/examples/python/usrp_am_mw_rcv.py b/gr-uhd/examples/python/usrp_am_mw_rcv.py index 28262f2bd..9d359a4cf 100755 --- a/gr-uhd/examples/python/usrp_am_mw_rcv.py +++ b/gr-uhd/examples/python/usrp_am_mw_rcv.py @@ -20,6 +20,8 @@ # Boston, MA 02110-1301, USA. # +#FIX gain + from gnuradio import gr, eng_notation, optfir from gnuradio import audio from gnuradio import uhd @@ -53,7 +55,7 @@ class wfm_rx_block (stdgui2.std_top_block): help="set gain in dB (default is maximum)") parser.add_option("-V", "--volume", type="eng_float", default=None, help="set volume (default is midpoint)") - parser.add_option("-O", "--audio-output", type="string", default="", + parser.add_option("-O", "--audio-output", type="string", default="default", help="pcm device name. E.g., hw:0,0 or surround51 or /dev/dsp") (options, args) = parser.parse_args() |