diff options
author | Soeren Apel <soeren@apelpie.net> | 2020-07-30 21:42:41 +0200 |
---|---|---|
committer | Soeren Apel <soeren@apelpie.net> | 2020-07-30 21:42:41 +0200 |
commit | b3a0347a805b1bb40773faa5d45ef160e74d8e33 (patch) | |
tree | 7096c203dae7a9711dcbbe0fb9ae6446010589b1 /decoders/sipi | |
parent | a9b8f8642f8422741b6db1f08cdd703c599c1402 (diff) | |
download | libsigrokdecode-b3a0347a805b1bb40773faa5d45ef160e74d8e33.tar.gz libsigrokdecode-b3a0347a805b1bb40773faa5d45ef160e74d8e33.zip |
lfast/sipi: Fix typo
Diffstat (limited to 'decoders/sipi')
-rw-r--r-- | decoders/sipi/__init__.py | 2 | ||||
-rw-r--r-- | decoders/sipi/pd.py | 5 |
2 files changed, 3 insertions, 4 deletions
diff --git a/decoders/sipi/__init__.py b/decoders/sipi/__init__.py index 0c268a1..d62e3c1 100644 --- a/decoders/sipi/__init__.py +++ b/decoders/sipi/__init__.py @@ -19,7 +19,7 @@ ''' The Serial Inter-Processor Interface (SIPI) is a higher-level protocol that runs -over the LFAST physical interface. Together, they form the NXP ZipWire interface. +over the LFAST physical interface. Together, they form the NXP Zipwire interface. The SIPI interface is also provided by Infineon as HSST, using HSCT for transport. diff --git a/decoders/sipi/pd.py b/decoders/sipi/pd.py index 73c5eb9..5bd58fb 100644 --- a/decoders/sipi/pd.py +++ b/decoders/sipi/pd.py @@ -51,16 +51,15 @@ command_codes = { } - ann_header_tag, ann_header_cmd, ann_header_ch, ann_address, ann_data, \ ann_crc, ann_warning = range(7) class Decoder(srd.Decoder): api_version = 3 id = 'sipi' - name = 'SIPI (ZipWire)' + name = 'SIPI (Zipwire)' longname = 'NXP SIPI interface' - desc = 'Serial Inter-Processor Interface (SIPI) aka ZipWire, aka HSSL' + desc = 'Serial Inter-Processor Interface (SIPI) aka Zipwire, aka HSSL' license = 'gplv2+' inputs = ['lfast'] outputs = [] |