]> sigrok.org Git - libsigrokdecode.git/commitdiff
parallel: expand 'wordsize' description (bits vs cycles)
authorGerhard Sittig <redacted>
Thu, 28 Dec 2017 17:08:51 +0000 (18:08 +0100)
committerUwe Hermann <redacted>
Tue, 13 Feb 2018 17:50:54 +0000 (18:50 +0100)
Users may not know which unit the "wordsize" is supposed to get
specified in. Especially when it's not a number of bits, but instead
the number of bus cycles. Expand the description text accordingly.

decoders/parallel/pd.py

index 1e0f4ebe90d002d9fe463a24073280c10568fe94..0e81344855a204c2407cc285f6102e2f3dc14943 100644 (file)
@@ -79,7 +79,8 @@ class Decoder(srd.Decoder):
     options = (
         {'id': 'clock_edge', 'desc': 'Clock edge to sample on',
             'default': 'rising', 'values': ('rising', 'falling')},
-        {'id': 'wordsize', 'desc': 'Data wordsize', 'default': 0},
+        {'id': 'wordsize', 'desc': 'Data wordsize (# bus cycles)',
+            'default': 0},
         {'id': 'endianness', 'desc': 'Data endianness',
             'default': 'little', 'values': ('little', 'big')},
     )