aboutsummaryrefslogtreecommitdiffstats
path: root/host/utils
diff options
context:
space:
mode:
authorBen Hilburn <ben.hilburn@ettus.com>2014-06-20 18:33:29 -0700
committerMartin Braun <martin.braun@ettus.com>2014-10-07 13:58:05 +0200
commitc8454c9f6a63430783874a0304d284aedc39ada0 (patch)
treeaef38cc2352400c5fd98e40399c9451446c79c52 /host/utils
parent198a0e2d9c9e490e30413cdfb28860fc9ce544ec (diff)
downloaduhd-c8454c9f6a63430783874a0304d284aedc39ada0.tar.gz
uhd-c8454c9f6a63430783874a0304d284aedc39ada0.tar.bz2
uhd-c8454c9f6a63430783874a0304d284aedc39ada0.zip
Rectifying a great embarassement in UHD. %s/Mhz/MHz.
Diffstat (limited to 'host/utils')
-rw-r--r--host/utils/uhd_usrp_probe.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/host/utils/uhd_usrp_probe.cpp b/host/utils/uhd_usrp_probe.cpp
index cfbfe5f20..656cdf45a 100644
--- a/host/utils/uhd_usrp_probe.cpp
+++ b/host/utils/uhd_usrp_probe.cpp
@@ -58,7 +58,7 @@ static std::string get_dsp_pp_string(const std::string &type, property_tree::spt
ss << boost::format("%s DSP: %s") % type % path.leaf() << std::endl;
//ss << std::endl;
meta_range_t freq_range = tree->access<meta_range_t>(path / "freq/range").get();
- ss << boost::format("Freq range: %.3f to %.3f Mhz") % (freq_range.start()/1e6) % (freq_range.stop()/1e6) << std::endl;;
+ ss << boost::format("Freq range: %.3f to %.3f MHz") % (freq_range.start()/1e6) % (freq_range.stop()/1e6) << std::endl;;
return ss.str();
}
@@ -80,7 +80,7 @@ static std::string get_frontend_pp_string(const std::string &type, property_tree
ss << boost::format("Sensors: %s") % prop_names_to_pp_string(tree->list(path / "sensors")) << std::endl;
meta_range_t freq_range = tree->access<meta_range_t>(path / "freq/range").get();
- ss << boost::format("Freq range: %.3f to %.3f Mhz") % (freq_range.start()/1e6) % (freq_range.stop()/1e6) << std::endl;
+ ss << boost::format("Freq range: %.3f to %.3f MHz") % (freq_range.start()/1e6) % (freq_range.stop()/1e6) << std::endl;
std::vector<std::string> gain_names = tree->list(path / "gains");
if (gain_names.size() == 0) ss << "Gain Elements: None" << std::endl;