X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=decoders%2Frfm12%2Fpd.py;h=d3df13a9eb3dfeb024cf7cf836b43a672d269920;hb=HEAD;hp=997932a7d9955d03c62f132cfb86488fac670d69;hpb=2787cf2abc0187679e87d3735ca3e64c2a1a91c8;p=libsigrokdecode.git diff --git a/decoders/rfm12/pd.py b/decoders/rfm12/pd.py index 997932a..3f25b32 100644 --- a/decoders/rfm12/pd.py +++ b/decoders/rfm12/pd.py @@ -27,20 +27,20 @@ class Decoder(srd.Decoder): desc = 'HopeRF RFM12 wireless transceiver control protocol.' license = 'gplv2+' inputs = ['spi'] - outputs = ['rfm12'] + outputs = [] tags = ['Wireless/RF'] annotations = ( ('cmd', 'Command'), - ('params', 'Command parameters'), - ('disabled', 'Disabled bits'), - ('return', 'Returned values'), - ('disabled_return', 'Disabled returned values'), + ('param', 'Command parameter'), + ('disabled', 'Disabled bit'), + ('return', 'Returned value'), + ('disabled_return', 'Disabled returned value'), ('interpretation', 'Interpretation'), ) annotation_rows = ( ('commands', 'Commands', (0, 1, 2)), - ('return', 'Return', (3, 4)), - ('interpretation', 'Interpretation', (5,)), + ('returns', 'Returns', (3, 4)), + ('interpretations', 'Interpretations', (5,)), ) def __init__(self):