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/e300/e300_remote_codec_ctrl.hpp | |
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/e300/e300_remote_codec_ctrl.hpp')
-rw-r--r-- | host/lib/usrp/e300/e300_remote_codec_ctrl.hpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/host/lib/usrp/e300/e300_remote_codec_ctrl.hpp b/host/lib/usrp/e300/e300_remote_codec_ctrl.hpp index d92e9bd58..855ab0f42 100644 --- a/host/lib/usrp/e300/e300_remote_codec_ctrl.hpp +++ b/host/lib/usrp/e300/e300_remote_codec_ctrl.hpp @@ -35,6 +35,8 @@ public: double freq; double rssi; double temp; + boost::uint32_t use_dc_correction; + boost::uint32_t use_iq_correction; boost::uint64_t bits; }; @@ -46,6 +48,8 @@ public: static const boost::uint32_t ACTION_SET_LOOPBACK = 14; static const boost::uint32_t ACTION_GET_RSSI = 15; static const boost::uint32_t ACTION_GET_TEMPERATURE = 16; + static const boost::uint32_t ACTION_SET_DC_OFFSET_AUTO = 17; + static const boost::uint32_t ACTION_SET_IQ_BALANCE_AUTO = 18; //Values for "which" static const boost::uint32_t CHAIN_NONE = 0; |