From 49176fecb4ab0c7a2474d50ff98a6f105c2a638f Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Mon, 3 Feb 2014 01:25:16 +0100 Subject: [PATCH] sdcard_spi: Fix incorrect 'Command index' value access. --- decoders/sdcard_spi/pd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/decoders/sdcard_spi/pd.py b/decoders/sdcard_spi/pd.py index 5cdea4c..ea1a3d7 100644 --- a/decoders/sdcard_spi/pd.py +++ b/decoders/sdcard_spi/pd.py @@ -176,7 +176,7 @@ class Decoder(srd.Decoder): self.putb([1, ['Warning: Transmitter bit != 1']]) # Bits[45:40]: Command index (BCD; valid: 0-63) - cmd = self.cmd_index = t[5] & 0x3f + cmd = self.cmd_index = t[0] & 0x3f # TODO self.bit_ss, self.bit_es = tb(5, 5)[1], tb(5, 0)[2] self.putb([70, ['Command: %s%d (%s)' % (s, cmd, cmd_name[cmd])]]) -- 2.30.2