diff options
author | Martin Braun <martin.braun@ettus.com> | 2021-01-08 13:37:50 +0100 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2021-03-04 08:18:41 -0600 |
commit | d83cac90839c9cfcbc4e4aceb9cf6a3e7daa3a0d (patch) | |
tree | 23ad26ee003404decba055c1b0bb99509ab1257c /host/lib/usrp/dboard/rhodium | |
parent | a8223f8dea40840719143c5490bd4de97bd132b7 (diff) | |
download | uhd-d83cac90839c9cfcbc4e4aceb9cf6a3e7daa3a0d.tar.gz uhd-d83cac90839c9cfcbc4e4aceb9cf6a3e7daa3a0d.tar.bz2 uhd-d83cac90839c9cfcbc4e4aceb9cf6a3e7daa3a0d.zip |
rh: cpld control: Comment out gain table address
This fixes a clang warning.
Diffstat (limited to 'host/lib/usrp/dboard/rhodium')
-rw-r--r-- | host/lib/usrp/dboard/rhodium/rhodium_cpld_ctrl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/usrp/dboard/rhodium/rhodium_cpld_ctrl.cpp b/host/lib/usrp/dboard/rhodium/rhodium_cpld_ctrl.cpp index 0617cbd94..b95f03983 100644 --- a/host/lib/usrp/dboard/rhodium/rhodium_cpld_ctrl.cpp +++ b/host/lib/usrp/dboard/rhodium/rhodium_cpld_ctrl.cpp @@ -18,7 +18,7 @@ namespace { //! Address of the CPLD scratch register constexpr uint8_t CPLD_REGS_SCRATCH = 0x05; //! Address of the CPLD gain table selection register -constexpr uint8_t CPLD_REGS_GAIN_TBL_SEL = 0x06; +// constexpr uint8_t CPLD_REGS_GAIN_TBL_SEL = 0x06; constexpr uint32_t MAX_GAIN_INDEX = 60; constexpr uint32_t MAX_LO_GAIN_INDEX = 30; |