diff options
author | Julian Arnold <julian.arnold@ettus.com> | 2015-02-23 17:08:21 -0800 |
---|---|---|
committer | Julian Arnold <julian.arnold@ettus.com> | 2015-02-23 17:47:27 -0800 |
commit | 566dbc2b5d0751167c9d868743dbebfff4d22afe (patch) | |
tree | 2648136464cf6f1fc32719649a0c0b070d0f94b5 /host/lib/usrp/common/ad9361_ctrl.cpp | |
parent | 2b06c3815551c99d7691a7aa3dbcf6eaedc9e998 (diff) | |
download | uhd-566dbc2b5d0751167c9d868743dbebfff4d22afe.tar.gz uhd-566dbc2b5d0751167c9d868743dbebfff4d22afe.tar.bz2 uhd-566dbc2b5d0751167c9d868743dbebfff4d22afe.zip |
e3xx: support for dc offset and iq balance control
Diffstat (limited to 'host/lib/usrp/common/ad9361_ctrl.cpp')
-rw-r--r-- | host/lib/usrp/common/ad9361_ctrl.cpp | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/host/lib/usrp/common/ad9361_ctrl.cpp b/host/lib/usrp/common/ad9361_ctrl.cpp index 4a3c17cf1..ada74cda5 100644 --- a/host/lib/usrp/common/ad9361_ctrl.cpp +++ b/host/lib/usrp/common/ad9361_ctrl.cpp @@ -16,7 +16,6 @@ // #include "ad9361_ctrl.hpp" -#include <uhd/exception.hpp> #include <uhd/types/ranges.hpp> #include <uhd/utils/msg.hpp> #include <uhd/types/serial.hpp> @@ -186,12 +185,6 @@ public: _device.set_dc_offset_auto(direction,on); } - void set_dc_offset(const std::string &which, const std::complex<double> value) - { - //This feature should not be used according to Analog Devices - throw uhd::runtime_error("ad9361_ctrl::set_dc_offset this feature is not supported on this device."); - } - void set_iq_balance_auto(const std::string &which, const bool on) { boost::lock_guard<boost::mutex> lock(_mutex); @@ -200,12 +193,6 @@ public: _device.set_iq_balance_auto(direction,on); } - void set_iq_balance(const std::string &which, const std::complex<double> value) - { - //This feature should not be used according to Analog Devices - throw uhd::runtime_error("ad9361_ctrl::set_iq_balance this feature is not supported on this device."); - } - private: static ad9361_device_t::direction_t _get_direction_from_antenna(const std::string& antenna) { |