]> sigrok.org Git - libsigrokdecode.git/blame - decoders/pan1321/pd.py
Doxyfile: Set CREATE_SUBDIRS to NO.
[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
4539e9ca 17## along with this program; if not, see <http://www.gnu.org/licenses/>.
5cc2d7bb
UH
18##
19
677d597b 20import sigrokdecode as srd
5cc2d7bb 21
d9c0d0a3
UH
22# ...
23RX = 0
24TX = 1
25
677d597b 26class Decoder(srd.Decoder):
b197383c 27 api_version = 3
5cc2d7bb 28 id = 'pan1321'
3d3da57d
UH
29 name = 'PAN1321'
30 longname = 'Panasonic PAN1321'
a465436e 31 desc = 'Bluetooth RF module with Serial Port Profile (SPP).'
5cc2d7bb
UH
32 license = 'gplv2+'
33 inputs = ['uart']
34 outputs = ['pan1321']
da9bcbd9
BV
35 annotations = (
36 ('text-verbose', 'Human-readable text (verbose)'),
37 ('text', 'Human-readable text'),
38 ('warnings', 'Human-readable warnings'),
39 )
5cc2d7bb 40
92b7b49f 41 def __init__(self):
10aeb8ea
GS
42 self.reset()
43
44 def reset(self):
5dd1c937 45 self.cmd = ['', '']
f9b0356b 46 self.ss_block = None
5cc2d7bb 47
8915b346 48 def start(self):
be465111 49 self.out_ann = self.register(srd.OUTPUT_ANN)
5cc2d7bb 50
f9b0356b
UH
51 def putx(self, data):
52 self.put(self.ss_block, self.es_block, self.out_ann, data)
53
54 def handle_host_command(self, rxtx, s):
2d3f496e 55 if s.startswith('AT+JAAC'):
84f33bc7 56 # AT+JAAC=<auto_accept> (0 or 1)
2d3f496e
UH
57 p = s[s.find('=') + 1:]
58 if p not in ('0', '1'):
59 self.putx([2, ['Warning: Invalid JAAC parameter "%s"' % p]])
60 return
61 x = 'Auto' if (p == '1') else 'Don\'t auto'
62 self.putx([0, ['%s-accept new connections' % x]])
63 self.putx([1, ['%s-accept connections' % x]])
64 elif s.startswith('AT+JPRO'):
84f33bc7 65 # AT+JPRO=<mode> (0 or 1)
5b2b0b0d 66 p = s[s.find('=') + 1:]
6bbd2a8a
UH
67 if p not in ('0', '1'):
68 self.putx([2, ['Warning: Invalid JPRO parameter "%s"' % p]])
6bbd2a8a 69 return
5b2b0b0d
UH
70 onoff = 'off' if (p == '0') else 'on'
71 x = 'Leaving' if (p == '0') else 'Entering'
72 self.putx([0, ['%s production mode' % x]])
73 self.putx([1, ['Production mode = %s' % onoff]])
74 elif s.startswith('AT+JRES'):
84f33bc7 75 # AT+JRES
6bbd2a8a
UH
76 if s != 'AT+JRES': # JRES has no params.
77 self.putx([2, ['Warning: Invalid JRES usage.']])
6bbd2a8a 78 return
5b2b0b0d
UH
79 self.putx([0, ['Triggering a software reset']])
80 self.putx([1, ['Reset']])
b1f2d25f 81 elif s.startswith('AT+JSDA'):
84f33bc7
UH
82 # AT+JSDA=<l>,<d> (l: length in bytes, d: data)
83 # l is (max?) 3 decimal digits and ranges from 1 to MTU size.
84 # Data can be ASCII or binary values (l bytes total).
b1f2d25f
UH
85 l, d = s[s.find('=') + 1:].split(',')
86 if not l.isnumeric():
87 self.putx([2, ['Warning: Invalid data length "%s".' % l]])
88 if int(l) != len(d):
89 self.putx([2, ['Warning: Data length mismatch (%d != %d).' % \
90 (int(l), len(d))]])
84f33bc7
UH
91 # TODO: Warn if length > MTU size (which is firmware-dependent
92 # and is negotiated by both Bluetooth devices upon connection).
b1f2d25f
UH
93 b = ''.join(['%02x ' % ord(c) for c in d])[:-1]
94 self.putx([0, ['Sending %d data bytes: %s' % (int(l), b)]])
95 self.putx([1, ['Send %d = %s' % (int(l), b)]])
5b2b0b0d 96 elif s.startswith('AT+JSEC'):
84f33bc7
UH
97 # AT+JSEC=<secmode>,<linkkey_info>,<pintype>,<pinlen>,<pin>
98 # secmode: Security mode 1 or 3 (default).
99 # linkkey_info: Must be 1 or 2. Has no function according to docs.
100 # pintype: 1: variable pin (default), 2: fixed pin.
101 # pinlen: PIN length (2 decimal digits). Max. PIN length is 16.
102 # pin: The Bluetooth PIN ('pinlen' chars). Used if pintype=2.
103 # Note: AT+JSEC (if used) must be the first command after reset.
104 # TODO: Parse all the other parameters.
fd4aa8aa 105 pin = s[-4:]
5b2b0b0d 106 self.putx([0, ['Host set the Bluetooth PIN to "' + pin + '"']])
e1f5df5b 107 self.putx([1, ['PIN = ' + pin]])
5dd1c937 108 elif s.startswith('AT+JSLN'):
84f33bc7
UH
109 # AT+JSLN=<namelen>,<name>
110 # namelen: Friendly name length (2 decimal digits). Max. len is 18.
111 # name: The Bluetooth "friendly name" ('namelen' ASCII characters).
fd4aa8aa 112 name = s[s.find(',') + 1:]
5b2b0b0d 113 self.putx([0, ['Host set the Bluetooth name to "' + name + '"']])
e1f5df5b 114 self.putx([1, ['BT name = ' + name]])
5dd1c937 115 else:
f9b0356b 116 self.putx([0, ['Host sent unsupported command: %s' % s]])
e1f5df5b 117 self.putx([1, ['Unsupported command: %s' % s]])
5dd1c937 118
f9b0356b 119 def handle_device_reply(self, rxtx, s):
fd4aa8aa 120 if s == 'ROK':
f9b0356b 121 self.putx([0, ['Device initialized correctly']])
e1f5df5b 122 self.putx([1, ['Init']])
fd4aa8aa 123 elif s == 'OK':
f9b0356b 124 self.putx([0, ['Device acknowledged last command']])
e1f5df5b 125 self.putx([1, ['ACK']])
5dd1c937
UH
126 elif s.startswith('ERR'):
127 error = s[s.find('=') + 1:]
f9b0356b 128 self.putx([0, ['Device sent error code ' + error]])
e1f5df5b 129 self.putx([1, ['ERR = ' + error]])
5dd1c937 130 else:
f9b0356b 131 self.putx([0, ['Device sent an unknown reply: %s' % s]])
e1f5df5b 132 self.putx([1, ['Unknown reply: %s' % s]])
5dd1c937 133
5cc2d7bb 134 def decode(self, ss, es, data):
d9c0d0a3 135 ptype, rxtx, pdata = data
5cc2d7bb
UH
136
137 # For now, ignore all UART packets except the actual data packets.
b9e44d1e 138 if ptype != 'DATA':
5cc2d7bb
UH
139 return
140
7cf698c5
UH
141 # We're only interested in the byte value (not individual bits).
142 pdata = pdata[0]
143
f9b0356b
UH
144 # If this is the start of a command/reply, remember the start sample.
145 if self.cmd[rxtx] == '':
146 self.ss_block = ss
147
5dd1c937
UH
148 # Append a new (ASCII) byte to the currently built/parsed command.
149 self.cmd[rxtx] += chr(pdata)
5cc2d7bb
UH
150
151 # Get packets/bytes until an \r\n sequence is found (end of command).
72a6cad4 152 if self.cmd[rxtx][-2:] != '\r\n':
5cc2d7bb
UH
153 return
154
5dd1c937 155 # Handle host commands and device replies.
fd4aa8aa 156 # We remove trailing \r\n from the strings before handling them.
db9ebbc2 157 self.es_block = es
5dd1c937 158 if rxtx == RX:
f9b0356b 159 self.handle_device_reply(rxtx, self.cmd[rxtx][:-2])
5dd1c937 160 elif rxtx == TX:
f9b0356b 161 self.handle_host_command(rxtx, self.cmd[rxtx][:-2])
5cc2d7bb 162
db9ebbc2 163 self.cmd[rxtx] = ''