diff options
author | Mark Meserve <mark.meserve@ni.com> | 2018-02-23 16:40:21 -0600 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2018-03-02 13:48:30 -0800 |
commit | 118f9f33af6df49fc40e7ae836d1e9b3c6edf9c0 (patch) | |
tree | a304b3afd9c6cab22e2b5d9e8d66aa31e4f32826 /host | |
parent | d15044982206030b8ecb104c37073cb6292e819e (diff) | |
download | uhd-118f9f33af6df49fc40e7ae836d1e9b3c6edf9c0.tar.gz uhd-118f9f33af6df49fc40e7ae836d1e9b3c6edf9c0.tar.bz2 uhd-118f9f33af6df49fc40e7ae836d1e9b3c6edf9c0.zip |
twinrx: correct the maximum daughterboard gain
- changes static max gain value from 95 to 93 to match new gain tables
Diffstat (limited to 'host')
-rw-r--r-- | host/lib/usrp/dboard/db_twinrx.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/usrp/dboard/db_twinrx.cpp b/host/lib/usrp/dboard/db_twinrx.cpp index 21a2d82fd..d1ee97e90 100644 --- a/host/lib/usrp/dboard/db_twinrx.cpp +++ b/host/lib/usrp/dboard/db_twinrx.cpp @@ -110,7 +110,7 @@ public: //Gain Specific get_rx_subtree()->create<meta_range_t>("gains/all/range") - .set(gain_range_t(0, 95, double(1.0))); + .set(gain_range_t(0, 93, double(1.0))); expert_factory::add_prop_node<double>(_expert, get_rx_subtree(), "gains/all/value", prepend_ch("gain", _ch_name), 0.0, AUTO_RESOLVE_ON_WRITE); |