X-Git-Url: http://sigrok.org/gitweb/?p=libsigrokdecode.git;a=blobdiff_plain;f=decoders%2Fspiflash%2Fpd.py;fp=decoders%2Fspiflash%2Fpd.py;h=3d40ceb0663d424a3ff65f4cf7b0151e2491c5a8;hp=10c39192353e878652e069343def1887fff40d9b;hb=e33410d3f96db7bb6a2ed0e2540e0df17bf561b5;hpb=37a2cca99bd06c760f201dc5c8c033cd4b8a40a1 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: