X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;f=decoders%2Fsda2506%2Fpd.py;h=5b071d88d57d3a3cadaa6a4d4bb949403f396373;hb=9f08e75781965074a226c36451fea3a4c4bc4377;hp=782fd837d29cd101b99cc7dbb2eb2274d47c3c32;hpb=6cbba91f23b9f9ace75b4722c9c0776b9211008d;p=libsigrokdecode.git diff --git a/decoders/sda2506/pd.py b/decoders/sda2506/pd.py index 782fd83..5b071d8 100644 --- a/decoders/sda2506/pd.py +++ b/decoders/sda2506/pd.py @@ -41,13 +41,13 @@ class Decoder(srd.Decoder): ('cmdbit', 'Command bit'), ('databit', 'Data bit'), ('cmd', 'Command'), - ('data', 'Data byte'), - ('warnings', 'Human-readable warnings'), + ('databyte', 'Data byte'), + ('warning', 'Warning'), ) annotation_rows = ( ('bits', 'Bits', (ann_cmdbit, ann_databit)), - ('commands', 'Commands', (ann_cmd,)), ('data', 'Data', (ann_data,)), + ('commands', 'Commands', (ann_cmd,)), ('warnings', 'Warnings', (ann_warning,)), )