diff options
author | Josh Blum | 2010-03-16 18:22:10 -0700 |
---|---|---|
committer | Josh Blum | 2010-03-16 18:22:10 -0700 |
commit | d43d40813c1a8343a86abb231876a8b7c0e9f806 (patch) | |
tree | e919c7da99aca7918ca5533e899cd7c9bbbf76bd /usrp2/host/lib/usrp2.cc | |
parent | 19d3c0cab37123f8bfd19fdfc576f44b6069300f (diff) | |
parent | ac422b700282e21956dbf7643ee2dfbeeebdaf45 (diff) | |
download | gnuradio-d43d40813c1a8343a86abb231876a8b7c0e9f806.tar.gz gnuradio-d43d40813c1a8343a86abb231876a8b7c0e9f806.tar.bz2 gnuradio-d43d40813c1a8343a86abb231876a8b7c0e9f806.zip |
Merge branch 'master' of http://gnuradio.org/git/gnuradio into uhd
Diffstat (limited to 'usrp2/host/lib/usrp2.cc')
-rw-r--r-- | usrp2/host/lib/usrp2.cc | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/usrp2/host/lib/usrp2.cc b/usrp2/host/lib/usrp2.cc index 801a436a3..f0ee564be 100644 --- a/usrp2/host/lib/usrp2.cc +++ b/usrp2/host/lib/usrp2.cc @@ -170,6 +170,11 @@ namespace usrp2 { // Receive bool + usrp2::set_rx_antenna(int ant){ + return d_impl->set_rx_antenna(ant); + } + + bool usrp2::set_rx_gain(double gain) { return d_impl->set_rx_gain(gain); @@ -280,6 +285,11 @@ namespace usrp2 { // Transmit bool + usrp2::set_tx_antenna(int ant){ + return d_impl->set_tx_antenna(ant); + } + + bool usrp2::set_tx_gain(double gain) { return d_impl->set_tx_gain(gain); |