diff options
author | Julian Arnold <julian.arnold@ettus.com> | 2015-03-05 15:25:31 -0800 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2015-03-05 17:18:54 -0800 |
commit | b8815805372feef40b9254a320e091a40c65377e (patch) | |
tree | 69e85d3af053d3da61dc6891d84b6c632f7e39c9 /host/lib/usrp/e300/e300_remote_codec_ctrl.hpp | |
parent | be14725245cca756e19c48d84aedc54064e8706c (diff) | |
download | uhd-b8815805372feef40b9254a320e091a40c65377e.tar.gz uhd-b8815805372feef40b9254a320e091a40c65377e.tar.bz2 uhd-b8815805372feef40b9254a320e091a40c65377e.zip |
e3xx: AGC support
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 855ab0f42..459d0ec55 100644 --- a/host/lib/usrp/e300/e300_remote_codec_ctrl.hpp +++ b/host/lib/usrp/e300/e300_remote_codec_ctrl.hpp @@ -37,6 +37,8 @@ public: double temp; boost::uint32_t use_dc_correction; boost::uint32_t use_iq_correction; + boost::uint32_t use_agc; + boost::uint32_t agc_mode; boost::uint64_t bits; }; @@ -50,6 +52,8 @@ public: 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; + static const boost::uint32_t ACTION_SET_AGC = 19; + static const boost::uint32_t ACTION_SET_AGC_MODE = 20; //Values for "which" static const boost::uint32_t CHAIN_NONE = 0; |