]> sigrok.org Git - libsigrokdecode.git/commitdiff
sle44xx: extend decoder doc string, add "memory cards" hint
authorGerhard Sittig <redacted>
Mon, 27 Jul 2020 15:48:40 +0000 (17:48 +0200)
committerGerhard Sittig <redacted>
Sun, 30 Aug 2020 05:23:58 +0000 (07:23 +0200)
Add a stronger hint to "memory cards", users might expect to see this
detail in the decoder's description. Rephrase how the reset line will
terminate pending memory reads.

decoders/sle44xx/__init__.py
decoders/sle44xx/pd.py

index 1bc718996f1f976cdb831cbb78c1b94aaeaf1fa9..0eb02856ca1bf29233d0ab64e9a520e7e51c0542 100644 (file)
@@ -18,8 +18,9 @@
 ##
 
 '''
-SLE 4418/28/32/42 implement a 2-wire protocol (CLK and I/O) for comunication
-along the RST signal which is used to abort unnecessarily long memory reads.
+SLE 4418/28/32/42 memory cards implement a 2-wire protocol (CLK and I/O)
+for data communication, along with the RST signal which resets the card's
+internal state, and can terminate currently executing long memory reads.
 '''
 
 from .pd import Decoder
index e897b13b7b8be1d2901cf79edc9c733cf42e1a80..a1cd8f87b065809a058655a563cd65c019291404 100644 (file)
@@ -47,7 +47,7 @@ class Decoder(srd.Decoder):
     api_version = 3
     id = 'sle44xx'
     name = 'SLE 44xx'
-    longname = 'SLE44xx protocol'
+    longname = 'SLE44xx memory card'
     desc = 'SLE 4418/28/32/42 memory card serial protocol'
     license = 'gplv2+'
     inputs = ['logic']