summaryrefslogtreecommitdiff
path: root/decoders/spiflash
diff options
context:
space:
mode:
authorUwe Hermann <uwe@hermann-uwe.de>2015-11-21 18:43:06 +0100
committerUwe Hermann <uwe@hermann-uwe.de>2015-11-21 18:43:06 +0100
commita1497fa349673fb5cd2cb5b62dbc90160d7f9e49 (patch)
treef58323966afb56d20f93f566fc437e6a275c8cfc /decoders/spiflash
parent979d5dd08f33e90da58ef6bb76137693ed84693a (diff)
downloadlibsigrokdecode-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')
-rw-r--r--decoders/spiflash/pd.py2
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'),