diff options
author | Tom Rondeau | 2011-10-21 19:43:05 -0400 |
---|---|---|
committer | Tom Rondeau | 2011-10-21 19:43:05 -0400 |
commit | d053db2aec8fe9640f7a33b6804d68281c02f820 (patch) | |
tree | b17f76dd1fbbbd25e5ac1ce9d3019ecfbc4c9f64 /gr-uhd/examples/usrp_spectrum_sense.py | |
parent | f896ce03e8fbe6baf18ea7b6e5bbe74f7e67c25a (diff) | |
download | gnuradio-d053db2aec8fe9640f7a33b6804d68281c02f820.tar.gz gnuradio-d053db2aec8fe9640f7a33b6804d68281c02f820.tar.bz2 gnuradio-d053db2aec8fe9640f7a33b6804d68281c02f820.zip |
uhd: added subdevspec option to UHD examples and sets antenna based on option.
Diffstat (limited to 'gr-uhd/examples/usrp_spectrum_sense.py')
-rwxr-xr-x | gr-uhd/examples/usrp_spectrum_sense.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gr-uhd/examples/usrp_spectrum_sense.py b/gr-uhd/examples/usrp_spectrum_sense.py index cf41e7043..01ca60396 100755 --- a/gr-uhd/examples/usrp_spectrum_sense.py +++ b/gr-uhd/examples/usrp_spectrum_sense.py @@ -86,6 +86,8 @@ class my_top_block(gr.top_block): parser = OptionParser(option_class=eng_option, usage=usage) parser.add_option("-a", "--args", type="string", default="", help="UHD device device address args [default=%default]") + parser.add_option("", "--spec", type="string", default=None, + help="Subdevice of UHD device where appropriate") 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=1e6, @@ -182,6 +184,13 @@ class my_top_block(gr.top_block): self.set_gain(options.gain) print "gain =", options.gain + # Set the subdevice spec + if(options.spec): + self.u.set_subdev_spec(options.spec, 0) + + # Set the antenna + if(options.antenna): + self.u.set_antenna(options.antenna, 0) def set_next_freq(self): target_freq = self.next_freq |