diff options
Diffstat (limited to 'host')
-rw-r--r-- | host/lib/usrp/dboard/db_wbx_common.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/usrp/dboard/db_wbx_common.cpp b/host/lib/usrp/dboard/db_wbx_common.cpp index 1089dc7c2..c7f8ba55d 100644 --- a/host/lib/usrp/dboard/db_wbx_common.cpp +++ b/host/lib/usrp/dboard/db_wbx_common.cpp @@ -205,7 +205,7 @@ static int tx_pga0_gain_to_iobits(double &gain){ ) % attn % attn_code % (iobits & TX_ATTN_MASK) % TX_ATTN_MASK << std::endl; //the actual gain setting - gain = wbx_v3_tx_gain_ranges["PGA0"].stop() - double(attn_code)/2; + gain = wbx_v3_tx_gain_ranges["PGA0"].stop() - double(attn_code); return iobits; } |