summaryrefslogtreecommitdiff
path: root/decoders/uart
diff options
context:
space:
mode:
Diffstat (limited to 'decoders/uart')
-rw-r--r--decoders/uart/uart.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/decoders/uart/uart.py b/decoders/uart/uart.py
index 92c105c..24551da 100644
--- a/decoders/uart/uart.py
+++ b/decoders/uart/uart.py
@@ -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.