Skip to content
Snippets Groups Projects
Commit 37e87a51 authored by Robin Mueller's avatar Robin Mueller
Browse files

arg parser explanation for tc timeout factor

parent 536b8c3d
Branches
Tags
No related merge requests found
...@@ -28,7 +28,9 @@ def parseInputArguments(): ...@@ -28,7 +28,9 @@ def parseInputArguments():
' Default: 12, 6(Serial)', default=6.0) ' Default: 12, 6(Serial)', default=6.0)
argParser.add_argument('-p', '--printFile', help='Supply -p to print output to file. Default: False', argParser.add_argument('-p', '--printFile', help='Supply -p to print output to file. Default: False',
action='store_true') 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('-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('-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') argParser.add_argument('-k', '--hk', help='Supply -k or --hk to print HK data', action='store_true')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment