]> sigrok.org Git - libsigrokdecode.git/blobdiff - decoders/lpc/lpc.py
Initial TI TLC5620 (8-bit quad DAC) protocol decoder.
[libsigrokdecode.git] / decoders / lpc / lpc.py
index 9bc91cd870de13a33d88f021be61432e5118c87a..cd56a9b4e21b9f49e449b0d4e3333bbd56f25d76 100644 (file)
@@ -22,9 +22,6 @@
 
 import sigrokdecode as srd
 
-# Annotation feed formats
-ANN_ASCII = 0
-
 # ...
 fields = {
     # START field (indicates start or stop of a transaction)
@@ -105,7 +102,7 @@ class Decoder(srd.Decoder):
     id = 'lpc'
     name = 'LPC'
     longname = 'Low-Pin-Count'
-    desc = 'TODO.'
+    desc = 'Protocol for low-bandwidth devices on PC mainboards.'
     license = 'gplv2+'
     inputs = ['logic']
     outputs = ['lpc']
@@ -128,7 +125,7 @@ class Decoder(srd.Decoder):
     ]
     options = {}
     annotations = [
-        ['ASCII', 'TODO: description'],
+        ['Text', 'Human-readable text'],
     ]
 
     def __init__(self, **kwargs):