diff options
author | Martin Braun <martin.braun@ettus.com> | 2014-09-23 16:48:42 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2014-09-24 17:28:49 -0700 |
commit | a6070f3492fd8aa5273818bf897b8a0106fe1e88 (patch) | |
tree | 90c7172f7b6d7700abb7bc1f701d4271412b50a0 /host | |
parent | c431a66df3df4cff82bfa2d2b2c7b16895a7efd6 (diff) | |
download | uhd-a6070f3492fd8aa5273818bf897b8a0106fe1e88.tar.gz uhd-a6070f3492fd8aa5273818bf897b8a0106fe1e88.tar.bz2 uhd-a6070f3492fd8aa5273818bf897b8a0106fe1e88.zip |
sbx: Fixed logging string (showed TX instead of RX)
Diffstat (limited to 'host')
-rw-r--r-- | host/lib/usrp/dboard/db_sbx_common.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/usrp/dboard/db_sbx_common.cpp b/host/lib/usrp/dboard/db_sbx_common.cpp index b67910e9a..ce5166c4c 100644 --- a/host/lib/usrp/dboard/db_sbx_common.cpp +++ b/host/lib/usrp/dboard/db_sbx_common.cpp @@ -54,7 +54,7 @@ static int rx_pga0_gain_to_iobits(double &gain){ int iobits = ((~attn_code) << RX_ATTN_SHIFT) & RX_ATTN_MASK; UHD_LOGV(often) << boost::format( - "SBX TX Attenuation: %f dB, Code: %d, IO Bits %x, Mask: %x" + "SBX RX Attenuation: %f dB, Code: %d, IO Bits %x, Mask: %x" ) % attn % attn_code % (iobits & RX_ATTN_MASK) % RX_ATTN_MASK << std::endl; //the actual gain setting |