diff options
Diffstat (limited to 'decoders/adns5020/pd.py')
-rw-r--r-- | decoders/adns5020/pd.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/decoders/adns5020/pd.py b/decoders/adns5020/pd.py index 9ac778e..b03fcaa 100644 --- a/decoders/adns5020/pd.py +++ b/decoders/adns5020/pd.py @@ -49,13 +49,13 @@ class Decoder(srd.Decoder): outputs = [] tags = ['IC', 'PC', 'Sensor'] annotations = ( - ('read', 'Register read commands'), - ('write', 'Register write commands'), - ('warning', 'Warnings'), + ('read', 'Register read'), + ('write', 'Register write'), + ('warning', 'Warning'), ) annotation_rows = ( - ('read', 'Read', (0,)), - ('write', 'Write', (1,)), + ('reads', 'Reads', (0,)), + ('writes', 'Writes', (1,)), ('warnings', 'Warnings', (2,)), ) |