]> sigrok.org Git - libsigrokdecode.git/commitdiff
srd: Quick hack to make the UART decoder work again.
authorUwe Hermann <redacted>
Tue, 3 Jan 2012 16:47:55 +0000 (17:47 +0100)
committerUwe Hermann <redacted>
Tue, 3 Jan 2012 16:47:55 +0000 (17:47 +0100)
decoders/uart.py

index a089aa13195ca9cbc118247159ba1d74d93404d6..93de9e27a419e04e740453b4833f51126f16ea38 100644 (file)
@@ -194,6 +194,8 @@ class Decoder(sigrok.Decoder):
 
     def __init__(self, **kwargs):
         self.probes = Decoder.probes.copy()
 
     def __init__(self, **kwargs):
         self.probes = Decoder.probes.copy()
+        self.output_protocol = None
+        self.output_annotation = None
 
         # Set defaults, can be overridden in 'start'.
         self.baudrate = 115200
 
         # Set defaults, can be overridden in 'start'.
         self.baudrate = 115200
@@ -227,6 +229,8 @@ class Decoder(sigrok.Decoder):
     def start(self, metadata):
         self.unitsize = metadata['unitsize']
         self.samplerate = metadata['samplerate']
     def start(self, metadata):
         self.unitsize = metadata['unitsize']
         self.samplerate = metadata['samplerate']
+        # self.output_protocol = self.output_new(2)
+        self.output_annotation = self.output_new(1)
 
         # TODO
         ### self.baudrate = metadata['baudrate']
 
         # TODO
         ### self.baudrate = metadata['baudrate']
@@ -390,12 +394,12 @@ class Decoder(sigrok.Decoder):
              'data': None, 'ann': 'Stop bit'}]
         return o
 
              'data': None, 'ann': 'Stop bit'}]
         return o
 
-    def decode(self, data):
+    def decode(self, timeoffset, duration, data):
         """UART protocol decoder"""
 
         out = []
 
         """UART protocol decoder"""
 
         out = []
 
-        for sample in sampleiter(data["data"], self.unitsize):
+        for sample in sampleiter(data, self.unitsize):
 
             # TODO: Eliminate the need for ord().
             s = ord(sample.data)
 
             # TODO: Eliminate the need for ord().
             s = ord(sample.data)
@@ -433,5 +437,6 @@ class Decoder(sigrok.Decoder):
             # self.oldtx = tx
 
         if out != []:
             # self.oldtx = tx
 
         if out != []:
-            self.put(out)
+            # self.put(self.output_protocol, 0, 0, out_proto)
+            self.put(self.output_annotation, 0, 0, out)