diff options
author | Josh Blum <josh@joshknows.com> | 2011-05-04 20:40:36 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2011-05-04 20:40:36 -0700 |
commit | 9734a74366dd095256c2e2c58c5c9bcd7547f72d (patch) | |
tree | 34b169cd39dab8809937b6fc98eb57364521e61a /host/lib/usrp/usrp2 | |
parent | 09be0518cee887878f3b070adea25eccc4c06e60 (diff) | |
download | uhd-9734a74366dd095256c2e2c58c5c9bcd7547f72d.tar.gz uhd-9734a74366dd095256c2e2c58c5c9bcd7547f72d.tar.bz2 uhd-9734a74366dd095256c2e2c58c5c9bcd7547f72d.zip |
uhd: various tweaks to log and msg, replaced a few remaining stdio
Diffstat (limited to 'host/lib/usrp/usrp2')
-rw-r--r-- | host/lib/usrp/usrp2/mboard_impl.cpp | 2 | ||||
-rw-r--r-- | host/lib/usrp/usrp2/usrp2_impl.cpp | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/host/lib/usrp/usrp2/mboard_impl.cpp b/host/lib/usrp/usrp2/mboard_impl.cpp index daccc0865..c9931be45 100644 --- a/host/lib/usrp/usrp2/mboard_impl.cpp +++ b/host/lib/usrp/usrp2/mboard_impl.cpp @@ -142,7 +142,7 @@ usrp2_mboard_impl::usrp2_mboard_impl( else { _mimo_clocking_mode_is_master = (_iface->peek32(_iface->regs.status) & (1 << 8)) != 0; } - UHD_MSG(status) << boost::format("mboard%d MIMO %s") % _index % + UHD_MSG(status) << boost::format("mboard%d is MIMO %s") % _index % (_mimo_clocking_mode_is_master?"master":"slave") << std::endl; //init the clock config diff --git a/host/lib/usrp/usrp2/usrp2_impl.cpp b/host/lib/usrp/usrp2/usrp2_impl.cpp index 4eb5508e2..2bc259657 100644 --- a/host/lib/usrp/usrp2/usrp2_impl.cpp +++ b/host/lib/usrp/usrp2/usrp2_impl.cpp @@ -228,6 +228,7 @@ static mtu_result_t determine_mtu(const std::string &addr, const mtu_result_t &u * Structors **********************************************************************/ usrp2_impl::usrp2_impl(const device_addr_t &_device_addr){ + UHD_MSG(status) << "Opening a USRP2/N-Series device..." << std::endl; device_addr_t device_addr = _device_addr; //setup the dsp transport hints (default to a large recv buff) |