diff options
Diffstat (limited to 'decoders/rfm12')
-rw-r--r-- | decoders/rfm12/pd.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/decoders/rfm12/pd.py b/decoders/rfm12/pd.py index d3df13a..3f25b32 100644 --- a/decoders/rfm12/pd.py +++ b/decoders/rfm12/pd.py @@ -31,16 +31,16 @@ class Decoder(srd.Decoder): 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): |