]> sigrok.org Git - libsigrokdecode.git/commitdiff
spiflash: Add "EEPROM" to descriptions.
authorUwe Hermann <redacted>
Tue, 5 Nov 2019 21:34:44 +0000 (22:34 +0100)
committerUwe Hermann <redacted>
Tue, 5 Nov 2019 21:34:44 +0000 (22:34 +0100)
There are various different names that these types of memories are being
referred to in the wild: SPI flash, flash chip, flash, flash EEPROM,
SPI EEPROM, serial flash, serial memory, flash memory, and various others.

In order to make UI decoder selection more useful to the user, we add
the "EEPROM" string to some of the decoder metadata fields, so the
decoder will (for example) show up in PulseView's list of decoders when
the user types "eeprom" to narrow down the listed decoders.

decoders/spiflash/pd.py

index 5ee22740553efa2ca69ca1cef1f93a02d25006d1..ad92023ee0b877158277af29ed57beac60ff3bb8 100644 (file)
@@ -73,9 +73,9 @@ def decode_status_reg(data):
 class Decoder(srd.Decoder):
     api_version = 3
     id = 'spiflash'
-    name = 'SPI flash'
-    longname = 'SPI flash chips'
-    desc = 'xx25 series SPI (NOR) flash chip protocol.'
+    name = 'SPI flash/EEPROM'
+    longname = 'SPI flash/EEPROM chips'
+    desc = 'xx25 series SPI (NOR) flash/EEPROM chip protocol.'
     license = 'gplv2+'
     inputs = ['spi']
     outputs = []