diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2019-04-02 21:33:58 +0200 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2019-04-02 21:33:58 +0200 |
commit | 6cbba91f23b9f9ace75b4722c9c0776b9211008d (patch) | |
tree | b61ad3b0db87d12860011f20538951d2aef46add /decoders/sdcard_spi | |
parent | 12a045188f21f42300b4cf25302478e25d15acb6 (diff) | |
download | libsigrokdecode-6cbba91f23b9f9ace75b4722c9c0776b9211008d.tar.gz libsigrokdecode-6cbba91f23b9f9ace75b4722c9c0776b9211008d.zip |
decoders: Fix incorrect 'outputs' fields.
Only add items to 'outputs' if the respective PD actually has
OUTPUT_PYTHON support implemented as of right now.
Various decoders might get OUTPUT_PYTHON support later, but the
'outputs' field should reflect the current status.
Diffstat (limited to 'decoders/sdcard_spi')
-rw-r--r-- | decoders/sdcard_spi/pd.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/decoders/sdcard_spi/pd.py b/decoders/sdcard_spi/pd.py index 2885911..8b43cd7 100644 --- a/decoders/sdcard_spi/pd.py +++ b/decoders/sdcard_spi/pd.py @@ -28,7 +28,7 @@ class Decoder(srd.Decoder): desc = 'Secure Digital card (SPI mode) low-level protocol.' license = 'gplv2+' inputs = ['spi'] - outputs = ['sdcard_spi'] + outputs = [] tags = ['Memory'] annotations = \ tuple(('cmd%d' % i, 'CMD%d' % i) for i in range(64)) + \ |