]> sigrok.org Git - libsigrokdecode.git/blobdiff - decoders/transitioncounter.py
srd: SPI: Support sampling on rising/falling CLK edge.
[libsigrokdecode.git] / decoders / transitioncounter.py
index 40fa3a899041420269d91e4f156c8a3dc3c1697f..ded3a3d1c8361acb6f9b9e3a8066e8e0920e150c 100644 (file)
@@ -33,7 +33,9 @@ class Decoder(srd.Decoder):
     outputs = ['transitioncounts']
     probes = []
     options = {}
-    annotations = []
+    annotations = [
+        ['TODO', 'TODO'],
+    ]
 
     def __init__(self, **kwargs):
         self.channels = -1
@@ -46,7 +48,7 @@ class Decoder(srd.Decoder):
     def report(self):
         pass
 
-    def decode(self, timeoffset, duration, data):
+    def decode(self, ss, es, data):
 
         for (samplenum, s) in data:
 
@@ -96,5 +98,5 @@ class Decoder(srd.Decoder):
 
         if outdata != []:
             # self.put(0, 0, self.out_proto, out_proto)
-            self.put(0, 0, self.out_ann, outdata)
+            self.put(0, 0, self.out_ann, [0, [str(outdata)]])