From 37e87a51c1d0288e5c6388faabacb35267198749 Mon Sep 17 00:00:00 2001 From: Robin Mueller <robin.mueller.m@gmail.com> Date: Sat, 22 Feb 2020 17:00:21 +0100 Subject: [PATCH] arg parser explanation for tc timeout factor --- utility/OBSW_ArgParser.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/utility/OBSW_ArgParser.py b/utility/OBSW_ArgParser.py index 60ce182..80c4850 100644 --- a/utility/OBSW_ArgParser.py +++ b/utility/OBSW_ArgParser.py @@ -28,7 +28,9 @@ def parseInputArguments(): ' Default: 12, 6(Serial)', default=6.0) argParser.add_argument('-p', '--printFile', help='Supply -p to print output to file. Default: False', action='store_true') - argParser.add_argument('-o', '--tcTimeoutFactor', type=float, help='TC Timeout Factor. Default: 3.5', default=3.5) + argParser.add_argument('-o', '--tcTimeoutFactor', type=float, + help='TC Timeout Factor. Multiplied with TM Timeout, ' + 'TC sent again after this time period. Default: 3.5', default=3.5) argParser.add_argument('-r', '--rawDataPrint', help='Supply -r to print all raw data directly', action='store_true') argParser.add_argument('-d', '--shortDisplayMode', help='Supply -d to print short output', action='store_true') argParser.add_argument('-k', '--hk', help='Supply -k or --hk to print HK data', action='store_true') -- GitLab