aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/usrp/usrp1
diff options
context:
space:
mode:
Diffstat (limited to 'host/lib/usrp/usrp1')
-rw-r--r--host/lib/usrp/usrp1/codec_ctrl.cpp6
-rw-r--r--host/lib/usrp/usrp1/usrp1_iface.cpp6
2 files changed, 6 insertions, 6 deletions
diff --git a/host/lib/usrp/usrp1/codec_ctrl.cpp b/host/lib/usrp/usrp1/codec_ctrl.cpp
index 73b97aa13..bb81ec3e7 100644
--- a/host/lib/usrp/usrp1/codec_ctrl.cpp
+++ b/host/lib/usrp/usrp1/codec_ctrl.cpp
@@ -277,7 +277,7 @@ void usrp1_codec_ctrl_impl::send_reg(uint8_t addr)
{
uint32_t reg = _ad9862_regs.get_write_reg(addr);
- UHD_LOGGER_DEBUG("USRP1")
+ UHD_LOGGER_TRACE("USRP1")
<< "codec control write reg: 0x"
<< std::setw(8) << std::hex << reg
;
@@ -289,7 +289,7 @@ void usrp1_codec_ctrl_impl::recv_reg(uint8_t addr)
{
uint32_t reg = _ad9862_regs.get_read_reg(addr);
- UHD_LOGGER_DEBUG("USRP1")
+ UHD_LOGGER_TRACE("USRP1")
<< "codec control read reg: 0x"
<< std::setw(8) << std::hex << reg
;
@@ -297,7 +297,7 @@ void usrp1_codec_ctrl_impl::recv_reg(uint8_t addr)
uint32_t ret = _iface->read_spi(_spi_slave,
spi_config_t::EDGE_RISE, reg, 16);
- UHD_LOGGER_DEBUG("USRP1")
+ UHD_LOGGER_TRACE("USRP1")
<< "codec control read ret: 0x"
<< std::setw(8) << std::hex << ret
;
diff --git a/host/lib/usrp/usrp1/usrp1_iface.cpp b/host/lib/usrp/usrp1/usrp1_iface.cpp
index 2d28ad542..9390714ae 100644
--- a/host/lib/usrp/usrp1/usrp1_iface.cpp
+++ b/host/lib/usrp/usrp1/usrp1_iface.cpp
@@ -49,7 +49,7 @@ public:
{
uint32_t swapped = uhd::htonx(value);
- UHD_LOGGER_DEBUG("USRP1")
+ UHD_LOGGER_TRACE("USRP1")
<< "poke32("
<< std::dec << std::setw(2) << addr << ", 0x"
<< std::hex << std::setw(8) << value << ")"
@@ -70,7 +70,7 @@ public:
uint32_t peek32(const uint32_t addr)
{
- UHD_LOGGER_DEBUG("USRP1")
+ UHD_LOGGER_TRACE("USRP1")
<< "peek32("
<< std::dec << std::setw(2) << addr << ")"
;
@@ -129,7 +129,7 @@ public:
size_t num_bits,
bool readback)
{
- UHD_LOGGER_DEBUG("USRP1")
+ UHD_LOGGER_TRACE("USRP1")
<< "transact_spi: "
<< " slave: " << which_slave
<< " bits: " << bits