]> sigrok.org Git - libsigrokdecode.git/commitdiff
avr_isp: move "unknown command" to warning, drop empty 'bits' row
authorGerhard Sittig <redacted>
Sun, 2 Aug 2020 18:14:13 +0000 (20:14 +0200)
committerGerhard Sittig <redacted>
Sun, 16 Aug 2020 13:02:31 +0000 (15:02 +0200)
Use the warnings annotation class for the "Unknown command" message, the
PE class (programming enabled) is unexpected and most probably a typo.

Drop the empty 'bits' annotation row which has been unused since commit
3b0013416fcfb.

decoders/avr_isp/pd.py

index 5a76a9d79a2fb9fee08f4f9e993cf0a4a619191f..31dd8416dbbe44001f1c3168f85afdbee2c8e1e0 100644 (file)
@@ -49,7 +49,6 @@ class Decoder(srd.Decoder):
         ('dev', 'Device'),
     )
     annotation_rows = (
-        ('bits', 'Bits', ()),
         ('commands', 'Commands', (Ann.PE, Ann.RSB0, Ann.RSB1, Ann.RSB2,
             Ann.CE, Ann.RFB, Ann.RHFB, Ann.REFB,)),
         ('warnings', 'Warnings', (Ann.WARN,)),
@@ -182,7 +181,7 @@ class Decoder(srd.Decoder):
         else:
             c = '%02x %02x %02x %02x' % tuple(cmd)
             r = '%02x %02x %02x %02x' % tuple(ret)
-            self.putx([Ann.PE, ['Unknown command: %s (reply: %s)!' % (c, r)]])
+            self.putx([Ann.WARN, ['Unknown command: %s (reply: %s)!' % (c, r)]])
 
     def decode(self, ss, es, data):
         ptype, mosi, miso = data