diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2015-11-21 18:43:06 +0100 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2015-11-21 18:43:06 +0100 |
commit | a1497fa349673fb5cd2cb5b62dbc90160d7f9e49 (patch) | |
tree | f58323966afb56d20f93f566fc437e6a275c8cfc /decoders/spiflash/pd.py | |
parent | 979d5dd08f33e90da58ef6bb76137693ed84693a (diff) | |
download | libsigrokdecode-a1497fa349673fb5cd2cb5b62dbc90160d7f9e49.tar.gz libsigrokdecode-a1497fa349673fb5cd2cb5b62dbc90160d7f9e49.zip |
spiflash: Fix incorrect 'inputs' field.
(this PD is indeed stacked on top of SPI)
Diffstat (limited to 'decoders/spiflash/pd.py')
-rw-r--r-- | decoders/spiflash/pd.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/decoders/spiflash/pd.py b/decoders/spiflash/pd.py index 0f4dd9b..0dfa035 100644 --- a/decoders/spiflash/pd.py +++ b/decoders/spiflash/pd.py @@ -56,7 +56,7 @@ class Decoder(srd.Decoder): longname = 'SPI flash chips' desc = 'xx25 series SPI (NOR) flash chip protocol.' license = 'gplv2+' - inputs = ['logic'] + inputs = ['spi'] outputs = ['spiflash'] annotations = cmd_annotation_classes() + ( ('bits', 'Bits'), |