X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;f=decoders%2Fnunchuk%2Fpd.py;h=9f1388f292ace7f813833cda6936ff1dea1d6b36;hb=93dd1225b285cdddaf9fc7f0bfa9cd6848595585;hp=eb99ba538b9c3836d68fc4661da62c10ea79b8d8;hpb=d6d8a8a440ea2a81e6ddde33d16bc84d01cdb432;p=libsigrokdecode.git diff --git a/decoders/nunchuk/pd.py b/decoders/nunchuk/pd.py index eb99ba5..9f1388f 100644 --- a/decoders/nunchuk/pd.py +++ b/decoders/nunchuk/pd.py @@ -27,7 +27,7 @@ class Decoder(srd.Decoder): desc = 'Nintendo Wii Nunchuk controller protocol.' license = 'gplv2+' inputs = ['i2c'] - outputs = ['nunchuck'] + outputs = [] tags = ['Sensor'] annotations = \ tuple(('reg-0x%02X' % i, 'Register 0x%02X' % i) for i in range(6)) + ( @@ -39,11 +39,11 @@ class Decoder(srd.Decoder): ('nunchuk-write', 'Nunchuk write'), ('cmd-init', 'Init command'), ('summary', 'Summary'), - ('warnings', 'Warnings'), + ('warning', 'Warning'), ) annotation_rows = ( ('regs', 'Registers', tuple(range(13))), - ('summary', 'Summary', (13,)), + ('summaries', 'Summaries', (13,)), ('warnings', 'Warnings', (14,)), )