diff options
author | Josh Blum | 2011-11-07 18:33:05 -0800 |
---|---|---|
committer | Josh Blum | 2011-11-07 18:56:29 -0800 |
commit | 24da5f495ca629113ea17f14e764af26a2285e73 (patch) | |
tree | df56fe437eaf43de82e5859e97df6dabf02bf8ff /gr-uhd/examples/max_power.py | |
parent | d04404e1dd647b2de0f711a6ccba92e9dc21b823 (diff) | |
download | gnuradio-24da5f495ca629113ea17f14e764af26a2285e73.tar.gz gnuradio-24da5f495ca629113ea17f14e764af26a2285e73.tar.bz2 gnuradio-24da5f495ca629113ea17f14e764af26a2285e73.zip |
uhd: change examples to use new stream api
Diffstat (limited to 'gr-uhd/examples/max_power.py')
-rwxr-xr-x | gr-uhd/examples/max_power.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gr-uhd/examples/max_power.py b/gr-uhd/examples/max_power.py index 53e1b413c..a849432ee 100755 --- a/gr-uhd/examples/max_power.py +++ b/gr-uhd/examples/max_power.py @@ -59,9 +59,8 @@ class build_block(gr.top_block): if tx_enable: print "\nTRANSMIT CHAIN" - self.u_tx = uhd.usrp_sink(device_addr=args, - io_type=uhd.io_type.COMPLEX_FLOAT32, - num_channels=tx_nchan) + stream_args = uhd.stream_args('fc32', channels=range(tx_nchan)) + self.u_tx = uhd.usrp_sink(device_addr=args, stream_args=stream_args) self.u_tx.set_samp_rate(MAX_RATE) self.tx_src0 = gr.sig_source_c(self.u_tx.get_samp_rate(), |