diff options
Diffstat (limited to 'gr-uhd/grc/gen_uhd_usrp_blocks.py')
-rw-r--r-- | gr-uhd/grc/gen_uhd_usrp_blocks.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gr-uhd/grc/gen_uhd_usrp_blocks.py b/gr-uhd/grc/gen_uhd_usrp_blocks.py index e6e3201cc7..94a1ed84c7 100644 --- a/gr-uhd/grc/gen_uhd_usrp_blocks.py +++ b/gr-uhd/grc/gen_uhd_usrp_blocks.py @@ -27,8 +27,8 @@ MAIN_TMPL = """\ <import>from gnuradio import uhd</import> <import>import time</import> <make>uhd.usrp_$(sourk)( - device_addr=\$dev_addr, - stream_args=uhd.stream_args( + \$dev_addr, + uhd.stream_args( cpu_format="\$type", \#if \$otw() otw_format=\$otw, @@ -438,7 +438,7 @@ LENTAG_PARAM = """ <param> LENTAG_ARG = """ #if $len_tag_name() - length_tag_name=$len_tag_name, + $len_tag_name, #end if""" def parse_tmpl(_tmpl, **kwargs): |