summaryrefslogtreecommitdiff
path: root/gr-digital/examples/ofdm/benchmark_tx.py
diff options
context:
space:
mode:
authorTom Rondeau2011-10-21 19:04:06 -0400
committerTom Rondeau2011-10-21 19:04:06 -0400
commitf896ce03e8fbe6baf18ea7b6e5bbe74f7e67c25a (patch)
treec3db006163e13547b2b75ed45bc4f7d9630e55ab /gr-digital/examples/ofdm/benchmark_tx.py
parent3e7ca8bfb95658dd9204e1d859e572b82e3b80d4 (diff)
downloadgnuradio-f896ce03e8fbe6baf18ea7b6e5bbe74f7e67c25a.tar.gz
gnuradio-f896ce03e8fbe6baf18ea7b6e5bbe74f7e67c25a.tar.bz2
gnuradio-f896ce03e8fbe6baf18ea7b6e5bbe74f7e67c25a.zip
digital: added subdevspec option to digital UHD examples.
Diffstat (limited to 'gr-digital/examples/ofdm/benchmark_tx.py')
-rwxr-xr-xgr-digital/examples/ofdm/benchmark_tx.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/gr-digital/examples/ofdm/benchmark_tx.py b/gr-digital/examples/ofdm/benchmark_tx.py
index dd0c69b57..5962fe7ec 100755
--- a/gr-digital/examples/ofdm/benchmark_tx.py
+++ b/gr-digital/examples/ofdm/benchmark_tx.py
@@ -40,7 +40,8 @@ class my_top_block(gr.top_block):
self.sink = uhd_transmitter(options.args,
options.bandwidth,
options.tx_freq, options.tx_gain,
- options.antenna, options.verbose)
+ options.spec, options.antenna,
+ options.verbose)
elif(options.to_file is not None):
self.sink = gr.file_sink(gr.sizeof_gr_complex, options.to_file)
else: