]> sigrok.org Git - libsigrokdecode.git/commitdiff
srd: avr_isp: Improve Chip Erase handling.
authorUwe Hermann <redacted>
Sat, 28 Jul 2012 15:39:38 +0000 (17:39 +0200)
committerUwe Hermann <redacted>
Sat, 28 Jul 2012 21:39:47 +0000 (23:39 +0200)
decoders/avr_isp/pd.py

index 4b496e0249fc64e061944992e61cbe2df84c101a..9ecc2801a184d1a7a863b5be4f9dbf5763d018d2 100644 (file)
@@ -116,9 +116,18 @@ class Decoder(srd.Decoder):
         self.xx, self.yy, self.zz, self.mm = 0, 0, 0, 0
 
     def handle_cmd_chip_erase(self, cmd, ret):
-        # TODO
+        # Chip erase (erases both flash an EEPROM).
+        # Upon successful chip erase, the lock bits will also be erased.
+        # The only way to end a Chip Erase cycle is to release RESET#.
         self.putx([0, ['Chip erase']])
 
+        # TODO: Check/handle RESET#.
+
+        # Sanity check on reply.
+        bit = (ret[2] & (1 << 7)) >> 7
+        if ret[1] != 0xac or bit != 1 or ret[3] != cmd[2]:
+            self.putx([1, ['Warning: Unexpected bytes in reply!']])
+
     def handle_cmd_read_fuse_bits(self, cmd, ret):
         # Read fuse bits.
         self.putx([0, ['Read fuse bits: 0x%02x' % ret[3]]])