diff options
-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}, |