]> sigrok.org Git - libsigrokdecode.git/commitdiff
lfast/sipi: Fix typo
authorSoeren Apel <redacted>
Thu, 30 Jul 2020 19:42:41 +0000 (21:42 +0200)
committerSoeren Apel <redacted>
Thu, 30 Jul 2020 19:42:41 +0000 (21:42 +0200)
decoders/lfast/__init__.py
decoders/sipi/__init__.py
decoders/sipi/pd.py

index a2fd0fe63cc188eb50d103a37b82a6e258120c2d..681f4f9e3112bbac5c5629dbeb902c7b435a5313 100644 (file)
@@ -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.
 
index 0c268a1bdf6650314ec265d68f20b6d796f29d41..d62e3c11c81db2fcab5272f4a07b003086d07773 100644 (file)
@@ -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.
 
index 73c5eb9410b3dec9721a4b62d5c65e0823abc8fb..5bd58fbb7328446c80aaf9641348124116d875ed 100644 (file)
@@ -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 = []