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/examples | |
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/examples')
-rw-r--r-- | host/examples/rx_samples_to_udp.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/examples/rx_samples_to_udp.cpp b/host/examples/rx_samples_to_udp.cpp index e397dbbf9..a8f0e0c36 100644 --- a/host/examples/rx_samples_to_udp.cpp +++ b/host/examples/rx_samples_to_udp.cpp @@ -80,11 +80,11 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){ std::cout << boost::format("Actual RX Rate: %f Msps...") % (usrp->get_rx_rate()/1e6) << std::endl << std::endl; //set the rx center frequency - std::cout << boost::format("Setting RX Freq: %f Mhz...") % (freq/1e6) << std::endl; + std::cout << boost::format("Setting RX Freq: %f MHz...") % (freq/1e6) << std::endl; uhd::tune_request_t tune_request(freq); if(vm.count("int-n")) tune_request.args = uhd::device_addr_t("mode_n=integer"); usrp->set_rx_freq(tune_request); - std::cout << boost::format("Actual RX Freq: %f Mhz...") % (usrp->get_rx_freq()/1e6) << std::endl << std::endl; + std::cout << boost::format("Actual RX Freq: %f MHz...") % (usrp->get_rx_freq()/1e6) << std::endl << std::endl; //set the rx rf gain std::cout << boost::format("Setting RX Gain: %f dB...") % gain << std::endl; |