diff options
author | Lars Amsel <lars.amsel@ni.com> | 2021-06-14 14:27:27 +0200 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2021-06-23 13:57:15 -0500 |
commit | 9958558c2f4dbe7c8fe2bec22effbf4919c82d59 (patch) | |
tree | d08a2dfb787d28ce4b59eb3b57490df209fb9d86 | |
parent | 1ca9a45ff5f2eb55093d825f6d9fc36256ee7d67 (diff) | |
download | uhd-9958558c2f4dbe7c8fe2bec22effbf4919c82d59.tar.gz uhd-9958558c2f4dbe7c8fe2bec22effbf4919c82d59.tar.bz2 uhd-9958558c2f4dbe7c8fe2bec22effbf4919c82d59.zip |
cal: make 'calibrate all channels' default for --channels argument
-rw-r--r-- | host/utils/uhd_power_cal.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/utils/uhd_power_cal.py b/host/utils/uhd_power_cal.py index d2fcf83cd..2add83e8f 100644 --- a/host/utils/uhd_power_cal.py +++ b/host/utils/uhd_power_cal.py @@ -74,7 +74,7 @@ def parse_args(): help="Select antenna port. A value of '*' means that the calibration " "will be repeated on all appropriate antenna ports.") parser.add_argument( - '--channels', default="0", + '--channels', default="*", help="Select channel. A value of '*' means that the calibration " "will be repeated on all appropriate channels.") parser.add_argument( |