summaryrefslogtreecommitdiff
path: root/gr-uhd/apps/uhd_rx_cfile.py
diff options
context:
space:
mode:
authorJosh Blum2011-11-07 18:33:05 -0800
committerJosh Blum2011-11-07 18:56:29 -0800
commit24da5f495ca629113ea17f14e764af26a2285e73 (patch)
treedf56fe437eaf43de82e5859e97df6dabf02bf8ff /gr-uhd/apps/uhd_rx_cfile.py
parentd04404e1dd647b2de0f711a6ccba92e9dc21b823 (diff)
downloadgnuradio-24da5f495ca629113ea17f14e764af26a2285e73.tar.gz
gnuradio-24da5f495ca629113ea17f14e764af26a2285e73.tar.bz2
gnuradio-24da5f495ca629113ea17f14e764af26a2285e73.zip
uhd: change examples to use new stream api
Diffstat (limited to 'gr-uhd/apps/uhd_rx_cfile.py')
-rwxr-xr-xgr-uhd/apps/uhd_rx_cfile.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/gr-uhd/apps/uhd_rx_cfile.py b/gr-uhd/apps/uhd_rx_cfile.py
index 625de36d3..61d5342c5 100755
--- a/gr-uhd/apps/uhd_rx_cfile.py
+++ b/gr-uhd/apps/uhd_rx_cfile.py
@@ -41,14 +41,10 @@ class rx_cfile_block(gr.top_block):
# Create a UHD device source
if options.output_shorts:
- self._u = uhd.usrp_source(device_addr=options.args,
- io_type=uhd.io_type.COMPLEX_INT16,
- num_channels=1)
+ self._u = uhd.usrp_source(device_addr=options.args, stream_args=uhd.stream_args('sc16'))
self._sink = gr.file_sink(gr.sizeof_short*2, filename)
else:
- self._u = uhd.usrp_source(device_addr=options.args,
- io_type=uhd.io_type.COMPLEX_FLOAT32,
- num_channels=1)
+ self._u = uhd.usrp_source(device_addr=options.args, stream_args=uhd.stream_args('fc32'))
self._sink = gr.file_sink(gr.sizeof_gr_complex, filename)
# Set receiver sample rate