]> sigrok.org Git - libsigrokdecode.git/blame - decoders/pan1321/pd.py
pan1321: Add support for JAAC.
[libsigrokdecode.git] / decoders / pan1321 / pd.py
CommitLineData
5cc2d7bb 1##
50bd5d25 2## This file is part of the libsigrokdecode project.
5cc2d7bb 3##
5b2b0b0d 4## Copyright (C) 2012-2013 Uwe Hermann <uwe@hermann-uwe.de>
5cc2d7bb
UH
5##
6## This program is free software; you can redistribute it and/or modify
7## it under the terms of the GNU General Public License as published by
8## the Free Software Foundation; either version 2 of the License, or
9## (at your option) any later version.
10##
11## This program is distributed in the hope that it will be useful,
12## but WITHOUT ANY WARRANTY; without even the implied warranty of
13## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14## GNU General Public License for more details.
15##
16## You should have received a copy of the GNU General Public License
17## along with this program; if not, write to the Free Software
18## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19##
20
5dd1c937 21# Panasonic PAN1321 Bluetooth module protocol decoder
5cc2d7bb 22
677d597b 23import sigrokdecode as srd
5cc2d7bb 24
d9c0d0a3
UH
25# ...
26RX = 0
27TX = 1
28
677d597b 29class Decoder(srd.Decoder):
a2c2afd9 30 api_version = 1
5cc2d7bb 31 id = 'pan1321'
3d3da57d
UH
32 name = 'PAN1321'
33 longname = 'Panasonic PAN1321'
a465436e 34 desc = 'Bluetooth RF module with Serial Port Profile (SPP).'
5cc2d7bb
UH
35 license = 'gplv2+'
36 inputs = ['uart']
37 outputs = ['pan1321']
9a12a6e7 38 probes = []
b77614bc 39 optional_probes = []
9a12a6e7 40 options = {}
e97b6ef5 41 annotations = [
e1f5df5b 42 ['Text (verbose)', 'Human-readable text (verbose)'],
ee3e279c 43 ['Text', 'Human-readable text'],
6bbd2a8a 44 ['Warnings', 'Human-readable warnings'],
5cc2d7bb
UH
45 ]
46
47 def __init__(self, **kwargs):
5dd1c937 48 self.cmd = ['', '']
f9b0356b 49 self.ss_block = None
5cc2d7bb
UH
50
51 def start(self, metadata):
56202222
UH
52 # self.out_proto = self.add(srd.OUTPUT_PROTO, 'pan1321')
53 self.out_ann = self.add(srd.OUTPUT_ANN, 'pan1321')
5cc2d7bb
UH
54
55 def report(self):
56 pass
57
f9b0356b
UH
58 def putx(self, data):
59 self.put(self.ss_block, self.es_block, self.out_ann, data)
60
61 def handle_host_command(self, rxtx, s):
2d3f496e
UH
62 if s.startswith('AT+JAAC'):
63 # AT+JAAC=x (x can be 0 or 1)
64 p = s[s.find('=') + 1:]
65 if p not in ('0', '1'):
66 self.putx([2, ['Warning: Invalid JAAC parameter "%s"' % p]])
67 return
68 x = 'Auto' if (p == '1') else 'Don\'t auto'
69 self.putx([0, ['%s-accept new connections' % x]])
70 self.putx([1, ['%s-accept connections' % x]])
71 elif s.startswith('AT+JPRO'):
5b2b0b0d 72 p = s[s.find('=') + 1:]
6bbd2a8a
UH
73 if p not in ('0', '1'):
74 self.putx([2, ['Warning: Invalid JPRO parameter "%s"' % p]])
6bbd2a8a 75 return
5b2b0b0d
UH
76 onoff = 'off' if (p == '0') else 'on'
77 x = 'Leaving' if (p == '0') else 'Entering'
78 self.putx([0, ['%s production mode' % x]])
79 self.putx([1, ['Production mode = %s' % onoff]])
80 elif s.startswith('AT+JRES'):
6bbd2a8a
UH
81 if s != 'AT+JRES': # JRES has no params.
82 self.putx([2, ['Warning: Invalid JRES usage.']])
6bbd2a8a 83 return
5b2b0b0d
UH
84 self.putx([0, ['Triggering a software reset']])
85 self.putx([1, ['Reset']])
86 elif s.startswith('AT+JSEC'):
fd4aa8aa 87 pin = s[-4:]
5b2b0b0d 88 self.putx([0, ['Host set the Bluetooth PIN to "' + pin + '"']])
e1f5df5b 89 self.putx([1, ['PIN = ' + pin]])
5dd1c937 90 elif s.startswith('AT+JSLN'):
fd4aa8aa 91 name = s[s.find(',') + 1:]
5b2b0b0d 92 self.putx([0, ['Host set the Bluetooth name to "' + name + '"']])
e1f5df5b 93 self.putx([1, ['BT name = ' + name]])
5dd1c937 94 else:
f9b0356b 95 self.putx([0, ['Host sent unsupported command: %s' % s]])
e1f5df5b 96 self.putx([1, ['Unsupported command: %s' % s]])
5dd1c937 97
f9b0356b 98 def handle_device_reply(self, rxtx, s):
fd4aa8aa 99 if s == 'ROK':
f9b0356b 100 self.putx([0, ['Device initialized correctly']])
e1f5df5b 101 self.putx([1, ['Init']])
fd4aa8aa 102 elif s == 'OK':
f9b0356b 103 self.putx([0, ['Device acknowledged last command']])
e1f5df5b 104 self.putx([1, ['ACK']])
5dd1c937
UH
105 elif s.startswith('ERR'):
106 error = s[s.find('=') + 1:]
f9b0356b 107 self.putx([0, ['Device sent error code ' + error]])
e1f5df5b 108 self.putx([1, ['ERR = ' + error]])
5dd1c937 109 else:
f9b0356b 110 self.putx([0, ['Device sent an unknown reply: %s' % s]])
e1f5df5b 111 self.putx([1, ['Unknown reply: %s' % s]])
5dd1c937 112
5cc2d7bb 113 def decode(self, ss, es, data):
d9c0d0a3 114 ptype, rxtx, pdata = data
5cc2d7bb
UH
115
116 # For now, ignore all UART packets except the actual data packets.
b9e44d1e 117 if ptype != 'DATA':
5cc2d7bb
UH
118 return
119
f9b0356b
UH
120 # If this is the start of a command/reply, remember the start sample.
121 if self.cmd[rxtx] == '':
122 self.ss_block = ss
123
5dd1c937
UH
124 # Append a new (ASCII) byte to the currently built/parsed command.
125 self.cmd[rxtx] += chr(pdata)
5cc2d7bb
UH
126
127 # Get packets/bytes until an \r\n sequence is found (end of command).
72a6cad4 128 if self.cmd[rxtx][-2:] != '\r\n':
5cc2d7bb
UH
129 return
130
5dd1c937 131 # Handle host commands and device replies.
fd4aa8aa 132 # We remove trailing \r\n from the strings before handling them.
db9ebbc2 133 self.es_block = es
5dd1c937 134 if rxtx == RX:
f9b0356b 135 self.handle_device_reply(rxtx, self.cmd[rxtx][:-2])
5dd1c937 136 elif rxtx == TX:
f9b0356b 137 self.handle_host_command(rxtx, self.cmd[rxtx][:-2])
5cc2d7bb 138 else:
decde15e 139 raise Exception('Invalid rxtx value: %d' % rxtx)
5cc2d7bb 140
db9ebbc2
UH
141 self.cmd[rxtx] = ''
142