aboutsummaryrefslogtreecommitdiffstats
path: root/host/examples/rx_samples_to_file.cpp
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2011-03-11 12:17:46 -0800
committerJosh Blum <josh@joshknows.com>2011-03-11 12:17:46 -0800
commit9b2ae7e07787b248328ecbe44c07695bb6a796f2 (patch)
tree84b113a7b6b5528f22e836b51854b215785dbbcd /host/examples/rx_samples_to_file.cpp
parent60db6edf5209e3e2407db354bdb8a0691e8e4ef4 (diff)
downloaduhd-9b2ae7e07787b248328ecbe44c07695bb6a796f2.tar.gz
uhd-9b2ae7e07787b248328ecbe44c07695bb6a796f2.tar.bz2
uhd-9b2ae7e07787b248328ecbe44c07695bb6a796f2.zip
uhd: added continuous streaming and new options to tx_waveforms
Diffstat (limited to 'host/examples/rx_samples_to_file.cpp')
-rw-r--r--host/examples/rx_samples_to_file.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/host/examples/rx_samples_to_file.cpp b/host/examples/rx_samples_to_file.cpp
index 61add87c7..d44315701 100644
--- a/host/examples/rx_samples_to_file.cpp
+++ b/host/examples/rx_samples_to_file.cpp
@@ -78,11 +78,11 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){
("nsamps", po::value<size_t>(&total_num_samps)->default_value(0), "total number of samples to receive")
("spb", po::value<size_t>(&spb)->default_value(10000), "samples per buffer")
("rate", po::value<double>(&rate), "rate of incoming samples")
- ("freq", po::value<double>(&freq), "rf center frequency in Hz")
+ ("freq", po::value<double>(&freq), "RF center frequency in Hz")
("gain", po::value<double>(&gain), "gain for the RF chain")
- ("ant", po::value<std::string>(&ant), "select antenna")
- ("subdev", po::value<std::string>(&subdev), "select subdevice")
- ("bw", po::value<double>(&bw), "select IF filter bandwidth in Hz")
+ ("ant", po::value<std::string>(&ant), "daughterboard antenna selection")
+ ("subdev", po::value<std::string>(&subdev), "daughterboard subdevice specification")
+ ("bw", po::value<double>(&bw), "daughterboard IF filter bandwidth in Hz")
;
po::variables_map vm;
po::store(po::parse_command_line(argc, argv, desc), vm);