diff options
-rw-r--r-- | decoders/spi/pd.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/decoders/spi/pd.py b/decoders/spi/pd.py index 7761f31..03a45da 100644 --- a/decoders/spi/pd.py +++ b/decoders/spi/pd.py @@ -86,6 +86,11 @@ class Decoder(srd.Decoder): ['mosi-data', 'MOSI SPI data'], ['warnings', 'Human-readable warnings'], ] + annotation_rows = ( + ('miso', 'MISO', (0,)), + ('mosi', 'MOSI', (1,)), + ('other', 'Other', (2,)), + ) def __init__(self): self.samplerate = None |