diff options
author | Mike Jameson | 2013-02-11 20:35:20 +0000 |
---|---|---|
committer | Tom Rondeau | 2013-02-13 15:57:00 -0500 |
commit | 85565f41084b3ddfa2a620d6f47b663c5414546d (patch) | |
tree | d2e86ce3adffbb2aca16cae52813eb8787c91e81 /gr-uhd | |
parent | df4cd09f0f4c80b36edf17d9c1d7ca28d3fd3ba4 (diff) | |
download | gnuradio-85565f41084b3ddfa2a620d6f47b663c5414546d.tar.gz gnuradio-85565f41084b3ddfa2a620d6f47b663c5414546d.tar.bz2 gnuradio-85565f41084b3ddfa2a620d6f47b663c5414546d.zip |
uhd: fixed receive_path()
Diffstat (limited to 'gr-uhd')
-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 8d26e656e..cf992a5f2 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 |