diff options
author | Tom Rondeau <trondeau@vt.edu> | 2011-10-19 09:52:26 -0700 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2011-10-19 09:52:26 -0700 |
commit | 792e9780cd48177a13416e5926b77f30526ae3ec (patch) | |
tree | 3c3794ba13f9db48183f2d04b3f2d422a4d6a0ce /gr-uhd/examples/fm_tx4.py | |
parent | 52b42b9e958be6908ab5279bbe4ecea8b2464ee8 (diff) |
uhd: updating examples to use args and better default for all UHD examples; also fixed the wfm_rcv blocks to use new PLL constructor.
Diffstat (limited to 'gr-uhd/examples/fm_tx4.py')
-rwxr-xr-x | gr-uhd/examples/fm_tx4.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gr-uhd/examples/fm_tx4.py b/gr-uhd/examples/fm_tx4.py index 9b39752c17..7b04ebd73e 100755 --- a/gr-uhd/examples/fm_tx4.py +++ b/gr-uhd/examples/fm_tx4.py @@ -83,9 +83,8 @@ class fm_tx_block(stdgui2.std_top_block): stdgui2.std_top_block.__init__ (self, frame, panel, vbox, argv) parser = OptionParser (option_class=eng_option) - parser.add_option("-a", "--address", type="string", - default="addr=192.168.10.2", - help="Address of UHD device, [default=%default]") + parser.add_option("-a", "--args", type="string", default="", + help="UHD device address args [default=%default]") parser.add_option("-A", "--antenna", type="string", default=None, help="select Rx Antenna where appropriate") parser.add_option("-s", "--samp-rate", type="eng_float", default=400e3, @@ -116,7 +115,7 @@ class fm_tx_block(stdgui2.std_top_block): # ---------------------------------------------------------------- # Set up constants and parameters - self.u = uhd.usrp_sink(device_addr=options.address, + self.u = uhd.usrp_sink(device_addr=options.args, io_type=uhd.io_type.COMPLEX_FLOAT32, num_channels=1) |