X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=decoders%2Fpan1321%2Fpd.py;h=a8938c60f6bd961f6972bf275be58004d75de025;hb=04867deb37b0f8cdfad55ab7bdb8708fd13f53fc;hp=2796fe2b04dc066440eeeedc6295644c66792561;hpb=c761524941fcb2237ceb65082e504e5e48e62a05;p=libsigrokdecode.git diff --git a/decoders/pan1321/pd.py b/decoders/pan1321/pd.py index 2796fe2..a8938c6 100644 --- a/decoders/pan1321/pd.py +++ b/decoders/pan1321/pd.py @@ -25,7 +25,7 @@ RX = 0 TX = 1 class Decoder(srd.Decoder): - api_version = 1 + api_version = 2 id = 'pan1321' name = 'PAN1321' longname = 'Panasonic PAN1321' @@ -39,7 +39,7 @@ class Decoder(srd.Decoder): ('warnings', 'Human-readable warnings'), ) - def __init__(self, **kwargs): + def __init__(self): self.cmd = ['', ''] self.ss_block = None @@ -136,6 +136,9 @@ class Decoder(srd.Decoder): if ptype != 'DATA': return + # We're only interested in the byte value (not individual bits). + pdata = pdata[0] + # If this is the start of a command/reply, remember the start sample. if self.cmd[rxtx] == '': self.ss_block = ss @@ -154,8 +157,5 @@ class Decoder(srd.Decoder): self.handle_device_reply(rxtx, self.cmd[rxtx][:-2]) elif rxtx == TX: self.handle_host_command(rxtx, self.cmd[rxtx][:-2]) - else: - raise Exception('Invalid rxtx value: %d' % rxtx) self.cmd[rxtx] = '' -