X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=decoders%2Fnunchuk%2Fpd.py;h=9f1388f292ace7f813833cda6936ff1dea1d6b36;hb=e144452bcdd5f2abbe6b6f3da41ad64f67e39def;hp=48a70991624232fdc882d8b8e3d1da376111df49;hpb=92b7b49f6964f57a7d6fc4473645c993cfa4ba52;p=libsigrokdecode.git diff --git a/decoders/nunchuk/pd.py b/decoders/nunchuk/pd.py index 48a7099..9f1388f 100644 --- a/decoders/nunchuk/pd.py +++ b/decoders/nunchuk/pd.py @@ -14,21 +14,21 @@ ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +## along with this program; if not, see . ## import sigrokdecode as srd class Decoder(srd.Decoder): - api_version = 2 + api_version = 3 id = 'nunchuk' name = 'Nunchuk' longname = 'Nintendo Wii Nunchuk' 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)) + ( ('bit-bz', 'BZ bit'), @@ -39,15 +39,18 @@ 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,)), ) def __init__(self): + self.reset() + + def reset(self): self.state = 'IDLE' self.sx = self.sy = self.ax = self.ay = self.az = self.bz = self.bc = -1 self.databytecount = 0