From: Soeren Apel Date: Thu, 30 Jul 2020 19:42:41 +0000 (+0200) Subject: lfast/sipi: Fix typo X-Git-Url: https://sigrok.org/gitweb/?p=libsigrokdecode.git;a=commitdiff_plain;h=b3a0347a805b1bb40773faa5d45ef160e74d8e33 lfast/sipi: Fix typo --- diff --git a/decoders/lfast/__init__.py b/decoders/lfast/__init__.py index a2fd0fe..681f4f9 100644 --- a/decoders/lfast/__init__.py +++ b/decoders/lfast/__init__.py @@ -18,7 +18,7 @@ ## ''' -LFAST is a physical communication interface used mainly by the NXP ZipWire +LFAST is a physical communication interface used mainly by the NXP Zipwire interface. It's a framed asynchronous serial interface using differential TX/RX pairs, capable of data rates of up to 320 MBit/s. 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 = []