diff options
author | Josh Blum <josh@joshknows.com> | 2012-01-03 11:22:42 -0800 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2012-01-03 11:22:42 -0800 |
commit | 1b2108274aeec3733f84c82bee885ab9a4da4c26 (patch) | |
tree | 85510469bf2d718c1e8c4aa9dbc1fc57a86f9fae /host/examples | |
parent | 6795022a23ac0f25183f3044aeba7cd549f50a67 (diff) | |
download | uhd-1b2108274aeec3733f84c82bee885ab9a4da4c26.tar.gz uhd-1b2108274aeec3733f84c82bee885ab9a4da4c26.tar.bz2 uhd-1b2108274aeec3733f84c82bee885ab9a4da4c26.zip |
uhd: typo fix in tx waveforms options
Diffstat (limited to 'host/examples')
-rw-r--r-- | host/examples/tx_waveforms.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/examples/tx_waveforms.cpp b/host/examples/tx_waveforms.cpp index 2a3d9f8e5..39f70aec6 100644 --- a/host/examples/tx_waveforms.cpp +++ b/host/examples/tx_waveforms.cpp @@ -110,7 +110,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){ ("bw", po::value<double>(&bw), "daughterboard IF filter bandwidth in Hz") ("wave-type", po::value<std::string>(&wave_type)->default_value("CONST"), "waveform type (CONST, SQUARE, RAMP, SINE)") ("wave-freq", po::value<double>(&wave_freq)->default_value(0), "waveform frequency in Hz") - ("ref", po::value<std::string>(&ref)->default_value("internal"), "waveform type (internal, external, mimo)") + ("ref", po::value<std::string>(&ref)->default_value("internal"), "clock reference (internal, external, mimo)") ; po::variables_map vm; po::store(po::parse_command_line(argc, argv, desc), vm); |