aboutsummaryrefslogtreecommitdiffstats
path: root/host/examples/rx_samples_to_file.cpp
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2010-10-27 19:30:45 -0700
committerJosh Blum <josh@joshknows.com>2010-10-27 19:30:45 -0700
commitd7c7351bb66cb4c455e77f83edd581d6afbcef9c (patch)
tree45391b528507f9ce2bffc8168fe112f1ed4fb63f /host/examples/rx_samples_to_file.cpp
parentdc9f22c9a7989e4485d6f03b0ccf6ea19e6ae42d (diff)
downloaduhd-d7c7351bb66cb4c455e77f83edd581d6afbcef9c.tar.gz
uhd-d7c7351bb66cb4c455e77f83edd581d6afbcef9c.tar.bz2
uhd-d7c7351bb66cb4c455e77f83edd581d6afbcef9c.zip
uhd: removed dilv in rx files examples
Diffstat (limited to 'host/examples/rx_samples_to_file.cpp')
-rw-r--r--host/examples/rx_samples_to_file.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/host/examples/rx_samples_to_file.cpp b/host/examples/rx_samples_to_file.cpp
index 6671644fa..c80d2a6de 100644
--- a/host/examples/rx_samples_to_file.cpp
+++ b/host/examples/rx_samples_to_file.cpp
@@ -46,7 +46,6 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){
("rate", po::value<double>(&rate)->default_value(100e6/16), "rate of incoming samples")
("freq", po::value<double>(&freq)->default_value(0), "rf center frequency in Hz")
("gain", po::value<float>(&gain)->default_value(0), "gain for the RF chain")
- ("dilv", "specify to disable inner-loop verbose")
;
po::variables_map vm;
po::store(po::parse_command_line(argc, argv, desc), vm);
@@ -58,8 +57,6 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){
return ~0;
}
- bool verbose = vm.count("dilv") == 0;
-
//create a usrp device
std::cout << std::endl;
std::cout << boost::format("Creating the usrp device with: %s...") % args << std::endl;
@@ -126,10 +123,6 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){
//write complex short integer samples to the binary file
outfile.write((const char*)&buff[0], num_rx_samps * sizeof(std::complex<short>));
- if(verbose) std::cout << boost::format(
- "Got packet: %u samples, %u full secs, %f frac secs"
- ) % num_rx_samps % md.time_spec.get_full_secs() % md.time_spec.get_frac_secs() << std::endl;
-
num_acc_samps += num_rx_samps;
} done_loop: