aboutsummaryrefslogtreecommitdiffstats
path: root/host/examples
diff options
context:
space:
mode:
Diffstat (limited to 'host/examples')
-rw-r--r--host/examples/benchmark_rate.cpp2
-rw-r--r--host/examples/benchmark_streamer.cpp2
-rw-r--r--host/examples/gpio.cpp2
-rw-r--r--host/examples/latency_test.cpp2
-rw-r--r--host/examples/network_relay.cpp2
-rw-r--r--host/examples/replay_samples_from_file.cpp2
-rw-r--r--host/examples/rfnoc_nullsource_ce_rx.cpp2
-rw-r--r--host/examples/rfnoc_radio_loopback.cpp2
-rw-r--r--host/examples/rfnoc_rx_to_file.cpp2
-rw-r--r--host/examples/rx_ascii_art_dft.cpp2
-rw-r--r--host/examples/rx_multi_samples.cpp2
-rw-r--r--host/examples/rx_samples_to_file.cpp2
-rw-r--r--host/examples/rx_samples_to_udp.cpp2
-rw-r--r--host/examples/rx_timed_samples.cpp2
-rw-r--r--host/examples/sync_to_gps.cpp2
-rw-r--r--host/examples/test_clock_synch.cpp2
-rw-r--r--host/examples/test_dboard_coercion.cpp2
-rw-r--r--host/examples/test_messages.cpp2
-rw-r--r--host/examples/test_pps_input.cpp2
-rw-r--r--host/examples/test_timed_commands.cpp2
-rw-r--r--host/examples/twinrx_freq_hopping.cpp2
-rw-r--r--host/examples/tx_bursts.cpp2
-rw-r--r--host/examples/tx_samples_from_file.cpp2
-rw-r--r--host/examples/tx_timed_samples.cpp2
-rw-r--r--host/examples/tx_waveforms.cpp2
-rw-r--r--host/examples/txrx_loopback_to_file.cpp2
-rw-r--r--host/examples/usrp_list_sensors.cpp2
27 files changed, 54 insertions, 0 deletions
diff --git a/host/examples/benchmark_rate.cpp b/host/examples/benchmark_rate.cpp
index 676b2139b..5e997f59a 100644
--- a/host/examples/benchmark_rate.cpp
+++ b/host/examples/benchmark_rate.cpp
@@ -299,6 +299,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){
//setup the program options
po::options_description desc("Allowed options");
+ // clang-format off
desc.add_options()
("help", "help message")
("args", po::value<std::string>(&args)->default_value(""), "single uhd device address args")
@@ -327,6 +328,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){
("seq-threshold", po::value<size_t>(&seq_threshold),
"Number of dropped packets (D) which will declare the benchmark a failure.")
;
+ // clang-format on
po::variables_map vm;
po::store(po::parse_command_line(argc, argv, desc), vm);
po::notify(vm);
diff --git a/host/examples/benchmark_streamer.cpp b/host/examples/benchmark_streamer.cpp
index 3f9a9f7d4..609e50788 100644
--- a/host/examples/benchmark_streamer.cpp
+++ b/host/examples/benchmark_streamer.cpp
@@ -621,6 +621,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[]) {
// Setup the program options
po::options_description desc("Allowed options");
+ // clang-format off
desc.add_options()
("help", "help message")
("args", po::value<std::string>(&args)->default_value(""), "single uhd device address args")
@@ -645,6 +646,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[]) {
("duc_ids", po::value<std::string>(&duc_ids)->default_value(""), "optional: list of block IDs for the DUCs")
("split_stream_ids", po::value<std::string>(&split_stream_ids)->default_value(""), "optional: list of block IDs for rx data splitters")
;
+ // clang-format on
po::variables_map vm;
po::store(po::parse_command_line(argc, argv, desc), vm);
po::notify(vm);
diff --git a/host/examples/gpio.cpp b/host/examples/gpio.cpp
index d89bf7d1c..537da80ca 100644
--- a/host/examples/gpio.cpp
+++ b/host/examples/gpio.cpp
@@ -153,6 +153,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[])
//setup the program options
po::options_description desc("Allowed options");
+ // clang-format off
desc.add_options()
("help", "help message")
("args", po::value<std::string>(&args)->default_value(""), "multi uhd device address args")
@@ -168,6 +169,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[])
("ddr", po::value<std::string>(&ddr_str)->default_value(GPIO_DEFAULT_DDR), "GPIO DDR reg value")
("out", po::value<std::string>(&out_str)->default_value(GPIO_DEFAULT_OUT), "GPIO OUT reg value")
;
+ // clang-format on
po::variables_map vm;
po::store(po::parse_command_line(argc, argv, desc), vm);
po::notify(vm);
diff --git a/host/examples/latency_test.cpp b/host/examples/latency_test.cpp
index fd6c98589..9a173b8a4 100644
--- a/host/examples/latency_test.cpp
+++ b/host/examples/latency_test.cpp
@@ -27,6 +27,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){
//setup the program options
po::options_description desc("Allowed options");
+ // clang-format off
desc.add_options()
("help", "help message")
("args", po::value<std::string>(&args)->default_value(""), "single uhd device address args")
@@ -36,6 +37,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){
("rate", po::value<double>(&rate)->default_value(100e6/4), "sample rate for receive and transmit (sps)")
("verbose", "specify to enable inner-loop verbose")
;
+ // clang-format on
po::variables_map vm;
po::store(po::parse_command_line(argc, argv, desc), vm);
po::notify(vm);
diff --git a/host/examples/network_relay.cpp b/host/examples/network_relay.cpp
index 8f7e180da..3f4a1d711 100644
--- a/host/examples/network_relay.cpp
+++ b/host/examples/network_relay.cpp
@@ -177,11 +177,13 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){
//setup the program options
po::options_description desc("Allowed options");
+ // clang-format off
desc.add_options()
("help", "help message")
("addr", po::value<std::string>(&addr), "the resolvable address of the usrp (must be specified)")
("bind", po::value<std::string>(&bind)->default_value("0.0.0.0"), "bind the server to this network address (default: any)")
;
+ // clang-format on
po::variables_map vm;
po::store(po::parse_command_line(argc, argv, desc), vm);
po::notify(vm);
diff --git a/host/examples/replay_samples_from_file.cpp b/host/examples/replay_samples_from_file.cpp
index a8b5d40e9..07691df2b 100644
--- a/host/examples/replay_samples_from_file.cpp
+++ b/host/examples/replay_samples_from_file.cpp
@@ -63,6 +63,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[])
size_t radio_id, radio_chan, replay_id, replay_chan, nsamps;
po::options_description desc("Allowed Options");
+ // clang-format off
desc.add_options()
("help", "help message")
("args", po::value<std::string>(&args)->default_value(""), "multi uhd device address args")
@@ -80,6 +81,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[])
("bw", po::value<double>(&bw), "analog front-end filter bandwidth in Hz")
("ref", po::value<std::string>(&ref)->default_value("internal"), "reference source (internal, external, mimo)")
;
+ // clang-format on
po::variables_map vm;
po::store(po::parse_command_line(argc, argv, desc), vm);
po::notify(vm);
diff --git a/host/examples/rfnoc_nullsource_ce_rx.cpp b/host/examples/rfnoc_nullsource_ce_rx.cpp
index 6289deabe..f6aa6e1a4 100644
--- a/host/examples/rfnoc_nullsource_ce_rx.cpp
+++ b/host/examples/rfnoc_nullsource_ce_rx.cpp
@@ -222,6 +222,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[])
//setup the program options
po::options_description desc("Allowed options");
+ // clang-format off
desc.add_options()
("help", "help message")
("args", po::value<std::string>(&args)->default_value("type=x300"), "multi uhd device address args")
@@ -242,6 +243,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[])
("blockid", po::value<std::string>(&blockid)->default_value("FIFO"), "The block ID for the processing block.")
("blockid2", po::value<std::string>(&blockid2)->default_value(""), "Optional: The block ID for the 2nd processing block.")
;
+ // clang-format on
po::variables_map vm;
po::store(po::parse_command_line(argc, argv, desc), vm);
po::notify(vm);
diff --git a/host/examples/rfnoc_radio_loopback.cpp b/host/examples/rfnoc_radio_loopback.cpp
index 8e0ca9443..f773cfe90 100644
--- a/host/examples/rfnoc_radio_loopback.cpp
+++ b/host/examples/rfnoc_radio_loopback.cpp
@@ -40,6 +40,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[])
//setup the program options
po::options_description desc("Allowed options");
+ // clang-format off
desc.add_options()
("help", "help message")
("args", po::value<std::string>(&args)->default_value(""), "UHD device address args")
@@ -66,6 +67,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[])
("bw", po::value<double>(&bw), "Analog frontend filter bandwidth in Hz (Rx and Tx)")
("ref", po::value<std::string>(&ref)->default_value("internal"), "reference source (internal, external, mimo)")
;
+ // clang-format on
po::variables_map vm;
po::store(po::parse_command_line(argc, argv, desc), vm);
po::notify(vm);
diff --git a/host/examples/rfnoc_rx_to_file.cpp b/host/examples/rfnoc_rx_to_file.cpp
index 0fe517a66..8993d52b7 100644
--- a/host/examples/rfnoc_rx_to_file.cpp
+++ b/host/examples/rfnoc_rx_to_file.cpp
@@ -242,6 +242,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){
//setup the program options
po::options_description desc("Allowed options");
+ // clang-format off
desc.add_options()
("help", "help message")
("file", po::value<std::string>(&file)->default_value("usrp_samples.dat"), "name of the file to write binary samples to")
@@ -274,6 +275,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){
("block-id", po::value<std::string>(&block_id)->default_value(""), "If block ID is specified, this block is inserted between radio and host.")
("block-args", po::value<std::string>(&block_args)->default_value(""), "These args are passed straight to the block.")
;
+ // clang-format on
po::variables_map vm;
po::store(po::parse_command_line(argc, argv, desc), vm);
po::notify(vm);
diff --git a/host/examples/rx_ascii_art_dft.cpp b/host/examples/rx_ascii_art_dft.cpp
index f37f4694e..8e4179fe3 100644
--- a/host/examples/rx_ascii_art_dft.cpp
+++ b/host/examples/rx_ascii_art_dft.cpp
@@ -33,6 +33,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){
//setup the program options
po::options_description desc("Allowed options");
+ // clang-format off
desc.add_options()
("help", "help message")
("args", po::value<std::string>(&args)->default_value(""), "multi uhd device address args")
@@ -53,6 +54,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){
("show-controls", po::value<bool>(&show_controls)->default_value(true), "show the keyboard controls")
("int-n", "tune USRP with integer-N tuning")
;
+ // clang-format on
po::variables_map vm;
po::store(po::parse_command_line(argc, argv, desc), vm);
po::notify(vm);
diff --git a/host/examples/rx_multi_samples.cpp b/host/examples/rx_multi_samples.cpp
index 7e6e7240a..8c50c5b69 100644
--- a/host/examples/rx_multi_samples.cpp
+++ b/host/examples/rx_multi_samples.cpp
@@ -29,6 +29,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){
//setup the program options
po::options_description desc("Allowed options");
+ // clang-format off
desc.add_options()
("help", "help message")
("args", po::value<std::string>(&args)->default_value(""), "single uhd device address args")
@@ -40,6 +41,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){
("dilv", "specify to disable inner-loop verbose")
("channels", po::value<std::string>(&channel_list)->default_value("0"), "which channel(s) to use (specify \"0\", \"1\", \"0,1\", etc)")
;
+ // clang-format on
po::variables_map vm;
po::store(po::parse_command_line(argc, argv, desc), vm);
po::notify(vm);
diff --git a/host/examples/rx_samples_to_file.cpp b/host/examples/rx_samples_to_file.cpp
index cd3f00d5c..c459fa257 100644
--- a/host/examples/rx_samples_to_file.cpp
+++ b/host/examples/rx_samples_to_file.cpp
@@ -234,6 +234,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){
//setup the program options
po::options_description desc("Allowed options");
+ // clang-format off
desc.add_options()
("help", "help message")
("args", po::value<std::string>(&args)->default_value(""), "multi uhd device address args")
@@ -263,6 +264,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){
("skip-lo", "skip checking LO lock status")
("int-n", "tune USRP with integer-N tuning")
;
+ // clang-format on
po::variables_map vm;
po::store(po::parse_command_line(argc, argv, desc), vm);
po::notify(vm);
diff --git a/host/examples/rx_samples_to_udp.cpp b/host/examples/rx_samples_to_udp.cpp
index dfbaab54f..5268de020 100644
--- a/host/examples/rx_samples_to_udp.cpp
+++ b/host/examples/rx_samples_to_udp.cpp
@@ -31,6 +31,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){
//setup the program options
po::options_description desc("Allowed options");
+ // clang-format off
desc.add_options()
("help", "help message")
("args", po::value<std::string>(&args)->default_value(""), "multi uhd device address args")
@@ -46,6 +47,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){
("ref", po::value<std::string>(&ref)->default_value("internal"), "reference source (internal, external, mimo)")
("int-n", "tune USRP with integer-N tuning")
;
+ // clang-format on
po::variables_map vm;
po::store(po::parse_command_line(argc, argv, desc), vm);
po::notify(vm);
diff --git a/host/examples/rx_timed_samples.cpp b/host/examples/rx_timed_samples.cpp
index 97c59fff0..cfe710409 100644
--- a/host/examples/rx_timed_samples.cpp
+++ b/host/examples/rx_timed_samples.cpp
@@ -29,6 +29,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){
//setup the program options
po::options_description desc("Allowed options");
+ // clang-format off
desc.add_options()
("help", "help message")
("args", po::value<std::string>(&args)->default_value(""), "single uhd device address args")
@@ -39,6 +40,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){
("dilv", "specify to disable inner-loop verbose")
("channels", po::value<std::string>(&channel_list)->default_value("0"), "which channel(s) to use (specify \"0\", \"1\", \"0,1\", etc)")
;
+ // clang-format on
po::variables_map vm;
po::store(po::parse_command_line(argc, argv, desc), vm);
po::notify(vm);
diff --git a/host/examples/sync_to_gps.cpp b/host/examples/sync_to_gps.cpp
index bb0f77f61..3449aef55 100644
--- a/host/examples/sync_to_gps.cpp
+++ b/host/examples/sync_to_gps.cpp
@@ -33,10 +33,12 @@ int UHD_SAFE_MAIN(int argc, char *argv[])
//Set up program options
po::options_description desc("Allowed options");
+ // clang-format off
desc.add_options()
("help", "help message")
("args", po::value<std::string>(&args)->default_value(""), "USRP device arguments")
;
+ // clang-format on
po::variables_map vm;
po::store(po::parse_command_line(argc, argv, desc), vm);
po::notify(vm);
diff --git a/host/examples/test_clock_synch.cpp b/host/examples/test_clock_synch.cpp
index a0b67a95b..cb34e625c 100644
--- a/host/examples/test_clock_synch.cpp
+++ b/host/examples/test_clock_synch.cpp
@@ -38,6 +38,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){
//Set up program options
po::options_description desc("Allowed options");
+ // clang-format off
desc.add_options()
("help", "Display this help message")
("clock-args", po::value<std::string>(&clock_args), "Clock device arguments")
@@ -45,6 +46,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){
("max-interval", po::value<uint32_t>(&max_interval)->default_value(10000), "Maximum interval between comparisons (in ms)")
("num-tests", po::value<uint32_t>(&num_tests)->default_value(10), "Number of times to compare device times")
;
+ // clang-format on
po::variables_map vm;
po::store(po::parse_command_line(argc, argv, desc), vm);
po::notify(vm);
diff --git a/host/examples/test_dboard_coercion.cpp b/host/examples/test_dboard_coercion.cpp
index a761f662d..1bbe6a81b 100644
--- a/host/examples/test_dboard_coercion.cpp
+++ b/host/examples/test_dboard_coercion.cpp
@@ -317,6 +317,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){
//Set up the program options
po::options_description desc("Allowed Options");
+ // clang-format off
desc.add_options()
("help", "help message")
("args", po::value<std::string>(&args)->default_value(""), "Specify the UHD device")
@@ -330,6 +331,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){
("no-rx-gain", "Do not test RX gain")
("verbose", "Output every frequency and gain check instead of just final summary")
;
+ // clang-format on
po::variables_map vm;
po::store(po::parse_command_line(argc, argv, desc), vm);
po::notify(vm);
diff --git a/host/examples/test_messages.cpp b/host/examples/test_messages.cpp
index 0f7c289d2..2ff10049d 100644
--- a/host/examples/test_messages.cpp
+++ b/host/examples/test_messages.cpp
@@ -275,12 +275,14 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){
//setup the program options
po::options_description desc("Allowed options");
+ // clang-format off
desc.add_options()
("help", "help message")
("args", po::value<std::string>(&args)->default_value(""), "multi uhd device address args")
("ntests", po::value<size_t>(&ntests)->default_value(50), "number of tests to run")
("test-chain", "Run broken chain tests")
;
+ // clang-format on
po::variables_map vm;
po::store(po::parse_command_line(argc, argv, desc), vm);
po::notify(vm);
diff --git a/host/examples/test_pps_input.cpp b/host/examples/test_pps_input.cpp
index b3c58da3b..5d11b9dcd 100644
--- a/host/examples/test_pps_input.cpp
+++ b/host/examples/test_pps_input.cpp
@@ -26,11 +26,13 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){
//setup the program options
po::options_description desc("Allowed options");
+ // clang-format off
desc.add_options()
("help", "help message")
("args", po::value<std::string>(&args)->default_value(""), "single uhd device address args")
("source", po::value<std::string>(&time_source)->default_value(""), "the time source (gpsdo, external) or blank for default")
;
+ // clang-format on
po::variables_map vm;
po::store(po::parse_command_line(argc, argv, desc), vm);
po::notify(vm);
diff --git a/host/examples/test_timed_commands.cpp b/host/examples/test_timed_commands.cpp
index a678df496..f53f3c282 100644
--- a/host/examples/test_timed_commands.cpp
+++ b/host/examples/test_timed_commands.cpp
@@ -23,10 +23,12 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){
//setup the program options
po::options_description desc("Allowed options");
+ // clang-format off
desc.add_options()
("help", "help message")
("args", po::value<std::string>(&args)->default_value(""), "single uhd device address args")
;
+ // clang-format on
po::variables_map vm;
po::store(po::parse_command_line(argc, argv, desc), vm);
po::notify(vm);
diff --git a/host/examples/twinrx_freq_hopping.cpp b/host/examples/twinrx_freq_hopping.cpp
index e6819adde..f4ce3e528 100644
--- a/host/examples/twinrx_freq_hopping.cpp
+++ b/host/examples/twinrx_freq_hopping.cpp
@@ -109,6 +109,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){
// Set up the program options
po::options_description desc("Allowed options");
+ // clang-format off
desc.add_options()
("help", "Print this help message")
("args", po::value<std::string>(&args)->default_value(""), "UHD device args")
@@ -123,6 +124,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){
("fft-path", po::value<std::string>(&fft_path), "Output an FFT to this file (optional)")
("repeat", "repeat sweep until Ctrl-C is pressed")
;
+ // clang-format on
po::variables_map vm;
po::store(po::parse_command_line(argc, argv, desc), vm);
po::notify(vm);
diff --git a/host/examples/tx_bursts.cpp b/host/examples/tx_bursts.cpp
index 3ee601c98..3f179b47c 100644
--- a/host/examples/tx_bursts.cpp
+++ b/host/examples/tx_bursts.cpp
@@ -36,6 +36,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){
//setup the program options
po::options_description desc("Allowed options");
+ // clang-format off
desc.add_options()
("help", "help message")
("args", po::value<std::string>(&args)->default_value(""), "multi uhd device address args")
@@ -51,6 +52,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){
("channels", po::value<std::string>(&channel_list)->default_value("0"), "which channel(s) to use (specify \"0\", \"1\", \"0,1\", etc")
("int-n", "tune USRP with integer-n tuning")
;
+ // clang-format on
po::variables_map vm;
po::store(po::parse_command_line(argc, argv, desc), vm);
po::notify(vm);
diff --git a/host/examples/tx_samples_from_file.cpp b/host/examples/tx_samples_from_file.cpp
index 23c55cf25..40974b4a2 100644
--- a/host/examples/tx_samples_from_file.cpp
+++ b/host/examples/tx_samples_from_file.cpp
@@ -60,6 +60,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){
//setup the program options
po::options_description desc("Allowed options");
+ // clang-format off
desc.add_options()
("help", "help message")
("args", po::value<std::string>(&args)->default_value(""), "multi uhd device address args")
@@ -83,6 +84,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){
("repeat", "repeatedly transmit file")
("int-n", "tune USRP with integer-n tuning")
;
+ // clang-format on
po::variables_map vm;
po::store(po::parse_command_line(argc, argv, desc), vm);
po::notify(vm);
diff --git a/host/examples/tx_timed_samples.cpp b/host/examples/tx_timed_samples.cpp
index 9df075a82..b57578939 100644
--- a/host/examples/tx_timed_samples.cpp
+++ b/host/examples/tx_timed_samples.cpp
@@ -29,6 +29,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){
//setup the program options
po::options_description desc("Allowed options");
+ // clang-format off
desc.add_options()
("help", "help message")
("args", po::value<std::string>(&args)->default_value(""), "single uhd device address args")
@@ -39,6 +40,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){
("ampl", po::value<float>(&ampl)->default_value(float(0.3)), "amplitude of each sample")
("dilv", "specify to disable inner-loop verbose")
;
+ // clang-format on
po::variables_map vm;
po::store(po::parse_command_line(argc, argv, desc), vm);
po::notify(vm);
diff --git a/host/examples/tx_waveforms.cpp b/host/examples/tx_waveforms.cpp
index 1c17e47aa..1698c019d 100644
--- a/host/examples/tx_waveforms.cpp
+++ b/host/examples/tx_waveforms.cpp
@@ -45,6 +45,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){
//setup the program options
po::options_description desc("Allowed options");
+ // clang-format off
desc.add_options()
("help", "help message")
("args", po::value<std::string>(&args)->default_value(""), "single uhd device address args")
@@ -67,6 +68,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){
("channels", po::value<std::string>(&channel_list)->default_value("0"), "which channels to use (specify \"0\", \"1\", \"0,1\", etc)")
("int-n", "tune USRP with integer-N tuning")
;
+ // clang-format on
po::variables_map vm;
po::store(po::parse_command_line(argc, argv, desc), vm);
po::notify(vm);
diff --git a/host/examples/txrx_loopback_to_file.cpp b/host/examples/txrx_loopback_to_file.cpp
index 03c765fca..cae69e043 100644
--- a/host/examples/txrx_loopback_to_file.cpp
+++ b/host/examples/txrx_loopback_to_file.cpp
@@ -202,6 +202,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){
//setup the program options
po::options_description desc("Allowed options");
+ // clang-format off
desc.add_options()
("help", "help message")
("tx-args", po::value<std::string>(&tx_args)->default_value(""), "uhd transmit device address args")
@@ -233,6 +234,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){
("tx-int-n", "tune USRP TX with integer-N tuning")
("rx-int-n", "tune USRP RX with integer-N tuning")
;
+ // clang-format on
po::variables_map vm;
po::store(po::parse_command_line(argc, argv, desc), vm);
po::notify(vm);
diff --git a/host/examples/usrp_list_sensors.cpp b/host/examples/usrp_list_sensors.cpp
index 6ad2ff999..0ffe33e5a 100644
--- a/host/examples/usrp_list_sensors.cpp
+++ b/host/examples/usrp_list_sensors.cpp
@@ -91,10 +91,12 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){
// Set up program options
po::options_description desc("Allowed options");
+ // clang-format off
desc.add_options()
("help", "Display this help message")
("args", po::value<std::string>(&usrp_args), "USRP device arguments")
;
+ // clang-format on
po::variables_map vm;
po::store(po::parse_command_line(argc, argv, desc), vm);
po::notify(vm);