]> sigrok.org Git - libsigrokdecode.git/blobdiff - decoders/avr_isp/pd.py
decoders: Fix incorrect 'outputs' fields.
[libsigrokdecode.git] / decoders / avr_isp / pd.py
index 9c8647d3d58b7006530aa41dd73637f3af8f70da..a0719b73dd5614a21332eccd71ef44bf5397d929 100644 (file)
@@ -27,10 +27,11 @@ class Decoder(srd.Decoder):
     id = 'avr_isp'
     name = 'AVR ISP'
     longname = 'AVR In-System Programming'
-    desc = 'Protocol for in-system programming Atmel AVR MCUs.'
+    desc = 'Atmel AVR In-System Programming (ISP) protocol.'
     license = 'gplv2+'
     inputs = ['spi']
-    outputs = ['avr_isp']
+    outputs = []
+    tags = ['Debug/trace']
     annotations = (
         ('pe', 'Programming enable'),
         ('rsb0', 'Read signature byte 0'),
@@ -51,6 +52,9 @@ class Decoder(srd.Decoder):
     )
 
     def __init__(self):
+        self.reset()
+
+    def reset(self):
         self.state = 'IDLE'
         self.mosi_bytes, self.miso_bytes = [], []
         self.ss_cmd, self.es_cmd = 0, 0