X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;f=decoders%2Fuart.py;h=a089aa13195ca9cbc118247159ba1d74d93404d6;hb=a62186e44c606a8d4cb45b3d8c3cc9fa6a5038ea;hp=efc1756149e568f5d0c57048396b355c1939af27;hpb=6efe1e1106bd648705f6f704ed2f267c86035dac;p=libsigrokdecode.git 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 []