diff options
author | Martin Braun <martin.braun@ettus.com> | 2016-08-03 12:17:51 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2016-08-03 12:17:51 -0700 |
commit | 826af8bc5cd0c6ba4d686906e1e07021e958fda9 (patch) | |
tree | f74f6badabe30d29fd071806f5a6e641e0ab0e29 /host/examples | |
parent | ac93ba035daf9eb8cf7b213eda086aa40f2a572d (diff) | |
download | uhd-826af8bc5cd0c6ba4d686906e1e07021e958fda9.tar.gz uhd-826af8bc5cd0c6ba4d686906e1e07021e958fda9.tar.bz2 uhd-826af8bc5cd0c6ba4d686906e1e07021e958fda9.zip |
examples: Remove default values for subdevs in benchmark_rate
Diffstat (limited to 'host/examples')
-rw-r--r-- | host/examples/benchmark_rate.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/examples/benchmark_rate.cpp b/host/examples/benchmark_rate.cpp index f24d8fde6..b024c3a20 100644 --- a/host/examples/benchmark_rate.cpp +++ b/host/examples/benchmark_rate.cpp @@ -278,8 +278,8 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){ ("help", "help message") ("args", po::value<std::string>(&args)->default_value(""), "single uhd device address args") ("duration", po::value<double>(&duration)->default_value(10.0), "duration for the test in seconds") - ("rx_subdev", po::value<std::string>(&rx_subdev)->default_value(""), "specify the device subdev for RX") - ("tx_subdev", po::value<std::string>(&tx_subdev)->default_value(""), "specify the device subdev for TX") + ("rx_subdev", po::value<std::string>(&rx_subdev), "specify the device subdev for RX") + ("tx_subdev", po::value<std::string>(&tx_subdev), "specify the device subdev for TX") ("rx_rate", po::value<double>(&rx_rate), "specify to perform a RX rate test (sps)") ("tx_rate", po::value<double>(&tx_rate), "specify to perform a TX rate test (sps)") ("rx_otw", po::value<std::string>(&rx_otw)->default_value("sc16"), "specify the over-the-wire sample mode for RX") |