2
0
forked from Ivasoft/DSView

Merge pull request #769 from Krakonos/fix-sdcard-spi-syntax

Fixed syntax error (extra closing bracket) in sdcard_spi decoder.
This commit is contained in:
dreamsourcelabTAI
2024-05-20 09:31:55 +08:00
committed by GitHub

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'