From 796ed325e082768db2d78caa4b465b8401889dad Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Mon, 15 Apr 2019 20:13:32 +0200 Subject: [PATCH] sdcard_spi: Fix incorrect annotation row indices. This fixes the remaining parts of bug #1365. --- decoders/sdcard_spi/pd.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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): -- 2.30.2