diff options
author | Mike Jameson | 2013-02-11 20:35:20 +0000 |
---|---|---|
committer | Mike Jameson | 2013-02-11 20:35:20 +0000 |
commit | 07b686fe56217dbb44cfbc7ccbbea44d82653003 (patch) | |
tree | 51b64546735178aae6b82b42577e2968859be054 | |
parent | 5fbfe0296cbfe10fbee23d767d2ccbf8ee535331 (diff) | |
download | gnuradio-07b686fe56217dbb44cfbc7ccbbea44d82653003.tar.gz gnuradio-07b686fe56217dbb44cfbc7ccbbea44d82653003.tar.bz2 gnuradio-07b686fe56217dbb44cfbc7ccbbea44d82653003.zip |
uhd: fixed receive_path()
-rwxr-xr-x | gr-uhd/examples/python/usrp_nbfm_ptt.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-uhd/examples/python/usrp_nbfm_ptt.py b/gr-uhd/examples/python/usrp_nbfm_ptt.py index 1ec25d167..791b8cb99 100755 --- a/gr-uhd/examples/python/usrp_nbfm_ptt.py +++ b/gr-uhd/examples/python/usrp_nbfm_ptt.py @@ -369,7 +369,7 @@ class transmit_path(gr.hier_block2): # //////////////////////////////////////////////////////////////////////// class receive_path(gr.hier_block2): - def __init__(self, args, gain, audio_output): + def __init__(self, args, spec, antenna, gain, audio_output): gr.hier_block2.__init__(self, "receive_path", gr.io_signature(0, 0, 0), # Input signature gr.io_signature(0, 0, 0)) # Output signature |