]> sigrok.org Git - libsigrokdecode.git/blobdiff - decoders/signature/pd.py
signature: Fix license metadata field to match pd.py license header.
[libsigrokdecode.git] / decoders / signature / pd.py
index 797a004521c846ba9a6fdd1c9d9a05faa5a67b31..65b86a255730d79d22c8f38287401415e38f7802 100644 (file)
@@ -46,7 +46,7 @@ class Decoder(srd.Decoder):
     name = 'Signature'
     longname = 'Signature analysis'
     desc = 'Annotate signature of logic patterns.'
-    license = 'gplv3+'
+    license = 'gplv2+'
     inputs = ['logic']
     outputs = []
     tags = ['Debug/trace', 'Util', 'Encoding']
@@ -58,11 +58,11 @@ class Decoder(srd.Decoder):
     )
     options = (
         {'id': 'start_edge', 'desc': 'START edge polarity',
-            'default': 'r', 'values': ('r', 'f')},
+            'default': 'rising', 'values': ('rising', 'falling')},
         {'id': 'stop_edge', 'desc': 'STOP edge polarity',
-            'default': 'r', 'values': ('r', 'f')},
+            'default': 'rising', 'values': ('rising', 'falling')},
         {'id': 'clk_edge', 'desc': 'CLOCK edge polarity',
-            'default': 'f', 'values': ('r', 'f')},
+            'default': 'falling', 'values': ('rising', 'falling')},
         {'id': 'annbits', 'desc': 'Enable bit level annotations',
             'default': 'no', 'values': ('yes', 'no')},
     )
@@ -99,8 +99,8 @@ class Decoder(srd.Decoder):
 
     def decode(self):
         opt = self.options
-        start_edge_mode_rising = opt['start_edge'] == 'r'
-        stop_edge_mode_rising = opt['stop_edge'] == 'r'
+        start_edge_mode_rising = opt['start_edge'] == 'rising'
+        stop_edge_mode_rising = opt['stop_edge'] == 'rising'
         annbits = opt['annbits'] == 'yes'
         gate_is_open = False
         sample_start = None