]> sigrok.org Git - libsigrokdecode.git/commitdiff
uart: Use T for stop bit, P for parity bit.
authorUwe Hermann <redacted>
Thu, 12 Sep 2013 06:20:03 +0000 (08:20 +0200)
committerUwe Hermann <redacted>
Thu, 12 Sep 2013 13:56:06 +0000 (15:56 +0200)
The short(est) annotations for "Stop bit" and "Parity bit" have both
been "P" until now, which is confusing for users (on certain zoom levels
in GUIs). Use "T" for stop bits now instead.

decoders/uart/pd.py

index c0968fb59d33f5d1a06c14259c3ce572bf0cb2a9..df4bba0a2daebe92afdbe80096c8a9c111c2d2eb 100644 (file)
@@ -254,7 +254,7 @@ class Decoder(srd.Decoder):
         self.state[rxtx] = 'WAIT FOR START BIT'
 
         self.putp(['STOPBIT', rxtx, self.stopbit1[rxtx]])
-        self.putg([ANN_ASCII, ['Stop bit', 'Stop', 'P']])
+        self.putg([ANN_ASCII, ['Stop bit', 'Stop', 'T']])
 
     def decode(self, ss, es, data):
         # TODO: Either RX or TX could be omitted (optional probe).