X-Git-Url: https://sigrok.org/gitweb/?p=libsigrokdecode.git;a=blobdiff_plain;f=decoders%2Fpan1321.py;h=55676ce55f95b005d0c67b888d301afe71eb4227;hp=b9109b6dcab54f1867862b34a6a5a0556121d2c4;hb=56270764cd4dd3d255979a283092765057a0d3de;hpb=d9c0d0a34a606bd1c96b468cbce4f0f8397e291d diff --git a/decoders/pan1321.py b/decoders/pan1321.py index b9109b6..55676ce 100644 --- a/decoders/pan1321.py +++ b/decoders/pan1321.py @@ -18,6 +18,8 @@ ## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA ## +# +# Panasonic PAN1321 Bluetooth module protocol decoder # # TODO # @@ -40,8 +42,6 @@ class Decoder(srd.Decoder): longname = 'Panasonic PAN1321' desc = 'TODO.' longdesc = 'TODO.' - author = 'Uwe Hermann' - email = 'uwe@hermann-uwe.de' license = 'gplv2+' inputs = ['uart'] outputs = ['pan1321'] @@ -52,7 +52,7 @@ class Decoder(srd.Decoder): ] def __init__(self, **kwargs): - self.cmd = '' + self.cmd = ['', ''] def start(self, metadata): # self.out_proto = self.add(srd.OUTPUT_PROTO, 'pan1321') @@ -61,6 +61,36 @@ class Decoder(srd.Decoder): def report(self): pass + def handle_host_command(self, ss, es, rxtx, s): + if s.startswith('AT+JSEC'): + pin = s[s.find('\r\n') - 4:len(s) - 2] + self.put(ss, es, self.out_ann, + [ANN_ASCII, ['Host set the Bluetooth PIN to ' + pin]]) + elif s.startswith('AT+JSLN'): + name = s[s.find(',') + 1:-2] + self.put(ss, es, self.out_ann, + [ANN_ASCII, ['Host set the Bluetooth name to ' + name]]) + else: + self.put(ss, es, self.out_ann, + [ANN_ASCII, ['Host sent unsupported command']]) + self.cmd[rxtx] = '' + + def handle_device_reply(self, ss, es, rxtx, s): + if s == 'ROK\r\n': + self.put(ss, es, self.out_ann, + [ANN_ASCII, ['Device initialized correctly']]) + elif s == 'OK\r\n': + self.put(ss, es, self.out_ann, + [ANN_ASCII, ['Device acknowledged last command']]) + elif s.startswith('ERR'): + error = s[s.find('=') + 1:] + self.put(ss, es, self.out_ann, + [ANN_ASCII, ['Device sent error code ' + error]]) + else: + self.put(ss, es, self.out_ann, + [ANN_ASCII, ['Device sent an unknown reply']]) + self.cmd[rxtx] = '' + def decode(self, ss, es, data): ptype, rxtx, pdata = data @@ -68,26 +98,18 @@ class Decoder(srd.Decoder): if ptype != T_DATA: return - # Append new (ASCII) byte to the current command. - self.cmd += chr(pdata) + # Append a new (ASCII) byte to the currently built/parsed command. + self.cmd[rxtx] += chr(pdata) # Get packets/bytes until an \r\n sequence is found (end of command). - if chr(pdata) != '\n': + if self.cmd[rxtx][-1:] != '\n': return - s = self.cmd - - # FIXME: This is just a quick hack. - if s.startswith('AT+JSEC'): - pin = s[s.find('\r\n') - 4:len(s) - 2] - self.put(ss, es, self.out_ann, - [ANN_ASCII, ['Setting Bluetooth PIN to ' + pin]]) - elif s.startswith('AT+JSLN'): - name = s[s.find(',') + 1:-2] - self.put(ss, es, self.out_ann, - [ANN_ASCII, ['Setting Bluetooth name to ' + name]]) + # Handle host commands and device replies. + if rxtx == RX: + self.handle_device_reply(ss, es, rxtx, self.cmd[rxtx]) + elif rxtx == TX: + self.handle_host_command(ss, es, rxtx, self.cmd[rxtx]) else: - self.put(ss, es, self.out_ann, [ANN_ASCII, ['Unsupported command']]) - - self.cmd = '' + pass # TODO: Error.