]> sigrok.org Git - libsigrokdecode.git/commitdiff
srd: uart: Fix regression.
authorUwe Hermann <redacted>
Fri, 31 Aug 2012 09:34:46 +0000 (11:34 +0200)
committerUwe Hermann <redacted>
Fri, 31 Aug 2012 09:34:46 +0000 (11:34 +0200)
Thanks Iztok Jeras <redacted> for the report.

decoders/uart/uart.py

index 92c105ca0c0ff380f7e3c7a363063d2f75432069..24551da6d03e177854e289178173512fa8704b98 100644 (file)
@@ -268,9 +268,10 @@ class Decoder(srd.Decoder):
         # TODO: Either RX or TX could be omitted (optional probe).
         for (self.samplenum, pins) in data:
 
-            # Ignore identical samples early on (for performance reasons).
-            if self.oldpins == pins:
-                continue
+            # Note: Ignoring identical samples here for performance reasons
+            # is not possible for this PD, at least not in the current state.
+            # if self.oldpins == pins:
+            #     continue
             self.oldpins, (rx, tx) = pins, pins
 
             # First sample: Save RX/TX value.