2
0
forked from Ivasoft/DSView

Fixed syntax error (extra closing bracket) in sdcard_spi decoder.

This error prevents the module from loading.

Fixes issue #768.
This commit is contained in:
Ladislav Láska
2024-05-19 10:08:12 +08:00
parent ede017bfb4
commit 4c66fc2291

View File

@@ -231,7 +231,7 @@ class Decoder(srd.Decoder):
def handle_cmd24(self):
# CMD24: WRITE_BLOCK
self.putc(Ann.CMD24, 'Write a block to address {$}', self.arg))
self.putc(Ann.CMD24, 'Write a block to address {$}', self.arg)
self.is_cmd24 = True
self.state = 'GET RESPONSE R1'