diff options
author | Ben Hilburn <ben.hilburn@ettus.com> | 2014-06-20 18:33:29 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2014-10-07 13:58:05 +0200 |
commit | c8454c9f6a63430783874a0304d284aedc39ada0 (patch) | |
tree | aef38cc2352400c5fd98e40399c9451446c79c52 /host/lib/usrp/dboard/db_cbx.cpp | |
parent | 198a0e2d9c9e490e30413cdfb28860fc9ce544ec (diff) | |
download | uhd-c8454c9f6a63430783874a0304d284aedc39ada0.tar.gz uhd-c8454c9f6a63430783874a0304d284aedc39ada0.tar.bz2 uhd-c8454c9f6a63430783874a0304d284aedc39ada0.zip |
Rectifying a great embarassement in UHD. %s/Mhz/MHz.
Diffstat (limited to 'host/lib/usrp/dboard/db_cbx.cpp')
-rw-r--r-- | host/lib/usrp/dboard/db_cbx.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/usrp/dboard/db_cbx.cpp b/host/lib/usrp/dboard/db_cbx.cpp index a64110fc7..db7f84932 100644 --- a/host/lib/usrp/dboard/db_cbx.cpp +++ b/host/lib/usrp/dboard/db_cbx.cpp @@ -44,7 +44,7 @@ sbx_xcvr::cbx::~cbx(void){ **********************************************************************/ double sbx_xcvr::cbx::set_lo_freq(dboard_iface::unit_t unit, double target_freq) { UHD_LOGV(often) << boost::format( - "CBX tune: target frequency %f Mhz" + "CBX tune: target frequency %f MHz" ) % (target_freq/1e6) << std::endl; /* @@ -223,7 +223,7 @@ double sbx_xcvr::cbx::set_lo_freq(dboard_iface::unit_t unit, double target_freq) //return the actual frequency UHD_LOGV(often) << boost::format( - "%s tune: actual frequency %f Mhz" + "%s tune: actual frequency %f MHz" ) % board_name.c_str() % (actual_freq/1e6) << std::endl; return actual_freq; } |