aboutsummaryrefslogtreecommitdiffstats
path: root/host/utils/uhd_cal_tx_dc_offset.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'host/utils/uhd_cal_tx_dc_offset.cpp')
-rw-r--r--host/utils/uhd_cal_tx_dc_offset.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/host/utils/uhd_cal_tx_dc_offset.cpp b/host/utils/uhd_cal_tx_dc_offset.cpp
index 6c35f017f..6519cd9ec 100644
--- a/host/utils/uhd_cal_tx_dc_offset.cpp
+++ b/host/utils/uhd_cal_tx_dc_offset.cpp
@@ -98,6 +98,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[])
double precision;
po::options_description desc("Allowed options");
+ // clang-format off
desc.add_options()
("help", "help message")
("verbose", "enable some verbose")
@@ -112,6 +113,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[])
("nsamps", po::value<size_t>(&nsamps), "Samples per data capture")
("precision", po::value<double>(&precision)->default_value(default_precision), "Correction precision (default=0.0001)")
;
+ // clang-format on
po::variables_map vm;
po::store(po::parse_command_line(argc, argv, desc), vm);