summaryrefslogtreecommitdiff
path: root/decoders
diff options
context:
space:
mode:
authorUwe Hermann <uwe@hermann-uwe.de>2017-06-06 12:46:08 +0200
committerUwe Hermann <uwe@hermann-uwe.de>2017-06-06 12:46:08 +0200
commite1eacaabe27095eb4688b4b1e50523d2d3527f22 (patch)
treef734b21527c6f188709a1031ab1d9d61278bd858 /decoders
parent3505b1b5e1fb15ee44e267bcdf50a32ee603a4a9 (diff)
downloadlibsigrokdecode-e1eacaabe27095eb4688b4b1e50523d2d3527f22.tar.gz
libsigrokdecode-e1eacaabe27095eb4688b4b1e50523d2d3527f22.zip
Rename eeprom93cxx decoder to eeprom93xx.
Not all EEPROMs of this series have (just) a 'c' in the name.
Diffstat (limited to 'decoders')
-rw-r--r--decoders/eeprom93xx/__init__.py (renamed from decoders/eeprom93cxx/__init__.py)2
-rw-r--r--decoders/eeprom93xx/pd.py (renamed from decoders/eeprom93cxx/pd.py)10
2 files changed, 6 insertions, 6 deletions
diff --git a/decoders/eeprom93cxx/__init__.py b/decoders/eeprom93xx/__init__.py
index 036f1f7..c8eaf7a 100644
--- a/decoders/eeprom93cxx/__init__.py
+++ b/decoders/eeprom93xx/__init__.py
@@ -18,7 +18,7 @@
##
'''
-This decoder stacks on top of the 'microwire' PD and decodes the 93Cxx EEPROM
+This decoder stacks on top of the 'microwire' PD and decodes the 93xx EEPROM
specific instructions.
The implemented instructions come from the STMicroelectronics M93Cx6 EEPROM
diff --git a/decoders/eeprom93cxx/pd.py b/decoders/eeprom93xx/pd.py
index cd54b47..5ae789f 100644
--- a/decoders/eeprom93cxx/pd.py
+++ b/decoders/eeprom93xx/pd.py
@@ -21,13 +21,13 @@ import sigrokdecode as srd
class Decoder(srd.Decoder):
api_version = 2
- id = 'eeprom93cxx'
- name = '93Cxx EEPROM'
- longname = '93Cxx Microwire EEPROM'
- desc = '93Cxx series Microwire EEPROM protocol.'
+ id = 'eeprom93xx'
+ name = '93xx EEPROM'
+ longname = '93xx Microwire EEPROM'
+ desc = '93xx series Microwire EEPROM protocol.'
license = 'gplv2+'
inputs = ['microwire']
- outputs = ['eeprom93cxx']
+ outputs = ['eeprom93xx']
options = (
{'id': 'addresssize', 'desc': 'Address size', 'default': 8},
{'id': 'wordsize', 'desc': 'Word size', 'default': 16},