X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;f=decoders%2Fpan1321%2Fpan1321.py;h=da981f25438f098734c18d12fa26fc4977923f4f;hb=5ea8b024da82871d4054356f8a645c8d61bbcd47;hp=2c7e6c6e2af7e822706f1334e9870a95ecd43299;hpb=156509ca42f0df2380c9f205f9aad337e1a07802;p=libsigrokdecode.git diff --git a/decoders/pan1321/pan1321.py b/decoders/pan1321/pan1321.py index 2c7e6c6..da981f2 100644 --- a/decoders/pan1321/pan1321.py +++ b/decoders/pan1321/pan1321.py @@ -22,9 +22,6 @@ import sigrokdecode as srd -# Annotation feed formats -ANN_ASCII = 0 - # ... RX = 0 TX = 1 @@ -34,8 +31,7 @@ class Decoder(srd.Decoder): id = 'pan1321' name = 'PAN1321' longname = 'Panasonic PAN1321' - desc = 'TODO.' - longdesc = 'TODO.' + desc = 'Bluetooth RF module with Serial Port Profile (SPP).' license = 'gplv2+' inputs = ['uart'] outputs = ['pan1321'] @@ -43,7 +39,7 @@ class Decoder(srd.Decoder): optional_probes = [] options = {} annotations = [ - ['ASCII', 'TODO: description'], + ['Text', 'Human-readable text'], ] def __init__(self, **kwargs):