From: Wolfram Sang Date: Wed, 26 Apr 2017 15:17:32 +0000 (+0200) Subject: sdcard_sd: really show result of SET_BLOCKLEN X-Git-Tag: libsigrokdecode-0.5.0~42 X-Git-Url: http://sigrok.org/gitweb/?p=libsigrokdecode.git;a=commitdiff_plain;h=d507f5e445906d8e90f643b18dc23c455f8569a8 sdcard_sd: really show result of SET_BLOCKLEN Now that self.arg is populated, we can finally use it. Signed-off-by: Wolfram Sang --- diff --git a/decoders/sdcard_sd/pd.py b/decoders/sdcard_sd/pd.py index 1ad9cb6..835a544 100644 --- a/decoders/sdcard_sd/pd.py +++ b/decoders/sdcard_sd/pd.py @@ -231,9 +231,8 @@ class Decoder(srd.Decoder): def handle_cmd16(self): # CMD16 (SET_BLOCKLEN) -> R1 - self.blocklen = self.arg self.puta(0, 31, [136, ['Block length', 'Blocklen', 'BL', 'B']]) - self.putc(16, 'Set the block length to %d bytes' % self.blocklen) + self.putc(16, 'Set the block length to %d bytes' % self.arg) self.token, self.state = [], 'GET RESPONSE R1' def handle_cmd55(self):