From 22b81899b3526d9e733421d04af6341aaabbd9a8 Mon Sep 17 00:00:00 2001 From: Josh Blum Date: Thu, 8 Sep 2011 11:25:52 -0700 Subject: wbx: fix bug in wbxv3 tx gain readback calculation --- host/lib/usrp/dboard/db_wbx_common.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'host/lib/usrp/dboard') 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; } -- cgit v1.2.3