diff options
Diffstat (limited to 'decoders/dcf77')
-rw-r--r-- | decoders/dcf77/dcf77.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/decoders/dcf77/dcf77.py b/decoders/dcf77/dcf77.py index 573888f..a02eb32 100644 --- a/decoders/dcf77/dcf77.py +++ b/decoders/dcf77/dcf77.py @@ -24,7 +24,7 @@ import sigrokdecode as srd import calendar # Annotation feed formats -ANN_ASCII = 0 +ANN_TEXT = 0 # Return the specified BCD number (max. 8 bits) as integer. def bcd2int(b): @@ -47,8 +47,8 @@ class Decoder(srd.Decoder): ] options = {} annotations = [ - # ANN_ASCII - ['ASCII', 'TODO: description'], + # ANN_TEXT + ['Text', 'Human-readable text'], ] def __init__(self, **kwargs): |