From: Uwe Hermann Date: Mon, 15 Apr 2019 18:13:32 +0000 (+0200) Subject: sdcard_spi: Fix incorrect annotation row indices. X-Git-Url: https://sigrok.org/gitweb/?p=libsigrokdecode.git;a=commitdiff_plain;h=796ed325e082768db2d78caa4b465b8401889dad sdcard_spi: Fix incorrect annotation row indices. This fixes the remaining parts of bug #1365. --- diff --git a/decoders/sdcard_spi/pd.py b/decoders/sdcard_spi/pd.py index 94055ce..62661e6 100644 --- a/decoders/sdcard_spi/pd.py +++ b/decoders/sdcard_spi/pd.py @@ -42,8 +42,8 @@ class Decoder(srd.Decoder): ('bit-warnings', 'Bit warnings'), ) annotation_rows = ( - ('bits', 'Bits', (134, 135)), - ('cmd-reply', 'Commands/replies', tuple(range(134))), + ('bits', 'Bits', (133, 134)), + ('cmd-reply', 'Commands/replies', tuple(range(133))), ) def __init__(self):