]> sigrok.org Git - sigrok-meter.git/commitdiff
sigrok-meter: Add --help example with multiple devices.
authorUwe Hermann <redacted>
Thu, 20 Nov 2014 21:04:56 +0000 (22:04 +0100)
committerUwe Hermann <redacted>
Thu, 20 Nov 2014 22:00:49 +0000 (23:00 +0100)
sigrok-meter

index 884ad2d08781a187db2f83f67615484166061ca8..dc34745445d63f9efc7642726154f73d2d767b65 100755 (executable)
@@ -32,9 +32,10 @@ def parse_cli():
     parser = argparse.ArgumentParser(
         description='Simple sigrok GUI for multimeters and dataloggers.',
         epilog=textwrap.dedent('''\
-            The DRIVER string is the same as for sigrok-cli(1). The nth
-            CONFIG is applied to the nth DRIVER. If there are more drivers
-            than configs, the remaining drivers use the default configuration.
+            The DRIVER string is the same as for sigrok-cli(1). Multiple
+            DRIVER and CONFIG items can be supplied. The nth CONFIG is applied
+            to the nth DRIVER. If there are more drivers than configs, the
+            remaining drivers use the default configuration.
 
             Examples:
 
@@ -44,6 +45,10 @@ def parse_cli():
 
               %(prog)s --driver demo:analog_channels=1 \\
                        --config samplerate=10
+
+              %(prog)s --driver voltcraft-k204:conn=/dev/ttyUSB0 \\
+                       --driver uni-t-ut61d:conn=1a86.e008 \\
+                       --driver uni-t-ut61e-ser:conn=/dev/ttyUSB1
         '''),
         formatter_class=argparse.RawDescriptionHelpFormatter)