diff options
Diffstat (limited to 'decoders/lpc')
-rw-r--r-- | decoders/lpc/lpc.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/decoders/lpc/lpc.py b/decoders/lpc/lpc.py index 9bc91cd..1357fbd 100644 --- a/decoders/lpc/lpc.py +++ b/decoders/lpc/lpc.py @@ -22,9 +22,6 @@ import sigrokdecode as srd -# Annotation feed formats -ANN_ASCII = 0 - # ... fields = { # START field (indicates start or stop of a transaction) @@ -128,7 +125,7 @@ class Decoder(srd.Decoder): ] options = {} annotations = [ - ['ASCII', 'TODO: description'], + ['Text', 'Human-readable text'], ] def __init__(self, **kwargs): |