]> sigrok.org Git - libsigrokdecode.git/commitdiff
signature: Minor consistency fixes.
authorUwe Hermann <redacted>
Thu, 28 Nov 2019 19:51:39 +0000 (20:51 +0100)
committerUwe Hermann <redacted>
Thu, 28 Nov 2019 19:52:38 +0000 (20:52 +0100)
decoders/signature/pd.py

index 8b2d128101a299fe09690aaa92d6f73364a8ab63..797a004521c846ba9a6fdd1c9d9a05faa5a67b31 100644 (file)
@@ -51,20 +51,20 @@ class Decoder(srd.Decoder):
     outputs = []
     tags = ['Debug/trace', 'Util', 'Encoding']
     channels = (
-        dict(id='start', name='START', desc='START channel'),
-        dict(id='stop', name='STOP', desc='STOP channel'),
-        dict(id='clk', name='CLOCK', desc='CLOCK channel'),
-        dict(id='data', name='DATA', desc='DATA channel')
+        {'id': 'start', 'name': 'START', 'desc': 'START channel'},
+        {'id': 'stop', 'name': 'STOP', 'desc': 'STOP channel'},
+        {'id': 'clk', 'name': 'CLOCK', 'desc': 'CLOCK channel'},
+        {'id': 'data', 'name': 'DATA', 'desc': 'DATA channel'},
     )
     options = (
-        dict(id='start_edge', desc='Edge-selection for START channel',
-             default='r', values=('r', 'f')),
-        dict(id='stop_edge', desc='Edge-selection for STOP channel',
-             default='r', values=('r', 'f')),
-        dict(id='clk_edge', desc='Edge-selection for CLOCK channel',
-             default='f', values=('r', 'f')),
-        dict(id='annbits', desc='Enable bit level annotation',
-             default='no', values=('yes', 'no'))
+        {'id': 'start_edge', 'desc': 'START edge polarity',
+            'default': 'r', 'values': ('r', 'f')},
+        {'id': 'stop_edge', 'desc': 'STOP edge polarity',
+            'default': 'r', 'values': ('r', 'f')},
+        {'id': 'clk_edge', 'desc': 'CLOCK edge polarity',
+            'default': 'f', 'values': ('r', 'f')},
+        {'id': 'annbits', 'desc': 'Enable bit level annotations',
+            'default': 'no', 'values': ('yes', 'no')},
     )
     annotations = (
         ('bit0', 'Bit0'),