From: Uwe Hermann Date: Sun, 23 Oct 2016 22:36:45 +0000 (+0200) Subject: spiflash: Implement Release Power-down / Device ID (0xAB) command. X-Git-Tag: libsigrokdecode-0.5.0~126 X-Git-Url: https://sigrok.org/gitweb/?p=libsigrokdecode.git;a=commitdiff_plain;h=e33410d3f96db7bb6a2ed0e2540e0df17bf561b5;hp=37a2cca99bd06c760f201dc5c8c033cd4b8a40a1 spiflash: Implement Release Power-down / Device ID (0xAB) command. This fixes bug #845. --- diff --git a/decoders/spiflash/pd.py b/decoders/spiflash/pd.py index 10c3919..3d40ceb 100644 --- a/decoders/spiflash/pd.py +++ b/decoders/spiflash/pd.py @@ -302,7 +302,20 @@ class Decoder(srd.Decoder): pass # TODO def handle_rdp_res(self, mosi, miso): - pass # TODO + if self.cmdstate == 1: + # Byte 1: Master sends command ID. + self.ss_block = self.ss + self.putx([16, ['Command: %s' % cmds[self.state][1]]]) + elif self.cmdstate in (2, 3, 4): + # Bytes 2/3/4: Master sends three dummy bytes. + self.putx([24, ['Dummy byte: %02x' % mosi]]) + elif self.cmdstate == 5: + # Byte 5: Slave sends device ID. + self.ids = [miso] + self.putx([24, ['Device: Macronix %s' % device_name[self.ids[0]]]]) + self.state = None + + self.cmdstate += 1 def handle_rems(self, mosi, miso): if self.cmdstate == 1: