]> sigrok.org Git - libsigrokdecode.git/commitdiff
counter: Let user decide how to handle the initial dead_cycles state
authorSoeren Apel <redacted>
Sat, 11 Aug 2018 21:14:45 +0000 (23:14 +0200)
committerUwe Hermann <redacted>
Thu, 30 Aug 2018 09:56:35 +0000 (11:56 +0200)
edge_off and word_off are not included in the if block because a user may
want to use edge_off to dismiss unwanted clocks instead of dead_cycles.

decoders/counter/pd.py

index c6eac0e20f2419a5aabb771284d73fd94272875a..27a2be88dc07934f9eed9a33a90ddc121c5d7c70 100644 (file)
@@ -56,6 +56,8 @@ class Decoder(srd.Decoder):
         {'id': 'edge_off', 'desc': 'Edge counter value after start/reset', 'default': 0},
         {'id': 'word_off', 'desc': 'Word counter value after start/reset', 'default': 0},
         {'id': 'dead_cycles', 'desc': 'Ignore this many edges after reset', 'default': 0},
+        {'id': 'start_with_reset', 'desc': 'Assume decode starts with reset',
+            'default': 'no', 'values': ('no', 'yes')},
     )
 
     def __init__(self):
@@ -93,7 +95,12 @@ class Decoder(srd.Decoder):
         edge_start = None
         word_count = int(self.options['word_off'])
         word_start = None
-        dead_count = 0
+
+        if self.options['start_with_reset'] == 'yes':
+            dead_count = int(self.options['dead_cycles'])
+        else:
+            dead_count = 0
+
         while True:
             self.wait(condition)
             now = self.samplenum