X-Git-Url: https://sigrok.org/gitweb/?p=libsigrokdecode.git;a=blobdiff_plain;f=decoders%2Fuart.py;h=a089aa13195ca9cbc118247159ba1d74d93404d6;hp=efc1756149e568f5d0c57048396b355c1939af27;hb=1b1c914fe5c1b88db6e0b8e49bee896428d483cb;hpb=6efe1e1106bd648705f6f704ed2f267c86035dac diff --git a/decoders/uart.py b/decoders/uart.py index efc1756..a089aa1 100644 --- a/decoders/uart.py +++ b/decoders/uart.py @@ -370,9 +370,7 @@ class Decoder(sigrok.Decoder): # TODO: Currently only supports 1 stop bit. def get_stop_bits(self, signal): # Skip samples until we're in the middle of the stop bit(s). - skip_parity = 0 - if self.parity != PARITY_NONE: - skip_parity = 1 + skip_parity = 0 if self.parity == PARITY_NONE else 1 if not self.reached_bit(self.num_data_bits + 1 + skip_parity): return []