]> sigrok.org Git - libsigrokdecode.git/commitdiff
uart: Default to hex format datavalue annotations.
authorUwe Hermann <redacted>
Sun, 23 Oct 2016 16:35:01 +0000 (18:35 +0200)
committerUwe Hermann <redacted>
Sun, 23 Oct 2016 19:48:09 +0000 (21:48 +0200)
This is in almost all cases what the user will want, only rarely ASCII
(the old default) will be the more natural fit.

decoders/uart/pd.py

index 6bba65306c6e022b2162e5b4480c96424d43108b..0fa0e7ff442b8e307a883cbd9711b646be9372cd 100644 (file)
@@ -102,7 +102,7 @@ class Decoder(srd.Decoder):
             'values': (0.0, 0.5, 1.0, 1.5)},
         {'id': 'bit_order', 'desc': 'Bit order', 'default': 'lsb-first',
             'values': ('lsb-first', 'msb-first')},
-        {'id': 'format', 'desc': 'Data format', 'default': 'ascii',
+        {'id': 'format', 'desc': 'Data format', 'default': 'hex',
             'values': ('ascii', 'dec', 'hex', 'oct', 'bin')},
         {'id': 'invert_rx', 'desc': 'Invert RX?', 'default': 'no',
             'values': ('yes', 'no')},