X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=decoders%2Fade77xx%2Fpd.py;h=5421cf47a708c6d1694d22d869ccb39cfe4ac962;hb=242438c32bfab01ae65ccc3678f5b9702a0678bb;hp=636c5485a1246a9d566aa2022f26c2f7ea11ca37;hpb=d6d8a8a440ea2a81e6ddde33d16bc84d01cdb432;p=libsigrokdecode.git diff --git a/decoders/ade77xx/pd.py b/decoders/ade77xx/pd.py index 636c548..5421cf4 100644 --- a/decoders/ade77xx/pd.py +++ b/decoders/ade77xx/pd.py @@ -33,16 +33,16 @@ class Decoder(srd.Decoder): desc = 'Poly phase multifunction energy metering IC protocol.' license = 'mit' inputs = ['spi'] - outputs = ['ade77xx'] + outputs = [] tags = ['Analog/digital', 'IC', '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,)), )