]> sigrok.org Git - libsigrokdecode.git/commitdiff
sdcard_sd: don't interate over not implemented command
authorWolfram Sang <redacted>
Wed, 26 Apr 2017 15:17:30 +0000 (17:17 +0200)
committerUwe Hermann <redacted>
Tue, 2 May 2017 18:13:28 +0000 (20:13 +0200)
There is no handler for CMD4 yet.

Signed-off-by: Wolfram Sang <redacted>
decoders/sdcard_sd/pd.py

index 02e78d72191c5a37b4b5b63efdfc603324629a73..b544b374a86f9744da3c37d07ba58c296b61655e 100644 (file)
@@ -164,7 +164,7 @@ class Decoder(srd.Decoder):
         # Handle command.
         s = 'ACMD' if self.is_acmd else 'CMD'
         self.cmd_str = '%s%d (%s)' % (s, self.cmd, self.cmd_name(self.cmd))
-        if self.cmd in (0, 2, 3, 4, 6, 7, 8, 9, 10, 13, 41, 51, 55):
+        if self.cmd in (0, 2, 3, 6, 7, 8, 9, 10, 13, 41, 51, 55):
             self.state = 'HANDLE CMD%d' % self.cmd
         else:
             self.state = 'HANDLE CMD999'