]> sigrok.org Git - libsigrokdecode.git/blob - decoders/pan1321/pan1321.py
2c86449d797ad3f668d041e7fbbdb14331aea9e7
[libsigrokdecode.git] / decoders / pan1321 / pan1321.py
1 ##
2 ## This file is part of the sigrok project.
3 ##
4 ## Copyright (C) 2012 Uwe Hermann <uwe@hermann-uwe.de>
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
21 #
22 # Panasonic PAN1321 Bluetooth module protocol decoder
23 #
24 # TODO
25 #
26
27 import sigrokdecode as srd
28
29 # Annotation feed formats
30 ANN_ASCII = 0
31
32 # UART 'data' packet type.
33 T_DATA = 1
34
35 # ...
36 RX = 0
37 TX = 1
38
39 class Decoder(srd.Decoder):
40     api_version = 1
41     id = 'pan1321'
42     name = 'PAN1321'
43     longname = 'Panasonic PAN1321'
44     desc = 'TODO.'
45     longdesc = 'TODO.'
46     license = 'gplv2+'
47     inputs = ['uart']
48     outputs = ['pan1321']
49     probes = []
50     options = {}
51     annotations = [
52         ['ASCII', 'TODO: description'],
53     ]
54
55     def __init__(self, **kwargs):
56         self.cmd = ['', '']
57
58     def start(self, metadata):
59         # self.out_proto = self.add(srd.OUTPUT_PROTO, 'pan1321')
60         self.out_ann = self.add(srd.OUTPUT_ANN, 'pan1321')
61
62     def report(self):
63         pass
64
65     def handle_host_command(self, ss, es, rxtx, s):
66         if s.startswith('AT+JSEC'):
67             pin = s[s.find('\r\n') - 4:len(s) - 2]
68             self.put(ss, es, self.out_ann,
69                      [ANN_ASCII, ['Host set the Bluetooth PIN to ' + pin]])
70         elif s.startswith('AT+JSLN'):
71             name = s[s.find(',') + 1:-2]
72             self.put(ss, es, self.out_ann,
73                      [ANN_ASCII, ['Host set the Bluetooth name to ' + name]])
74         else:
75             self.put(ss, es, self.out_ann,
76                      [ANN_ASCII, ['Host sent unsupported command']])
77         self.cmd[rxtx] = ''
78
79     def handle_device_reply(self, ss, es, rxtx, s):
80         if s == 'ROK\r\n':
81             self.put(ss, es, self.out_ann,
82                      [ANN_ASCII, ['Device initialized correctly']])
83         elif s == 'OK\r\n':
84             self.put(ss, es, self.out_ann,
85                      [ANN_ASCII, ['Device acknowledged last command']])
86         elif s.startswith('ERR'):
87             error = s[s.find('=') + 1:]
88             self.put(ss, es, self.out_ann,
89                      [ANN_ASCII, ['Device sent error code ' + error]])
90         else:
91             self.put(ss, es, self.out_ann,
92                      [ANN_ASCII, ['Device sent an unknown reply']])
93         self.cmd[rxtx] = ''
94
95     def decode(self, ss, es, data):
96         ptype, rxtx, pdata = data
97
98         # For now, ignore all UART packets except the actual data packets.
99         if ptype != T_DATA:
100             return
101
102         # Append a new (ASCII) byte to the currently built/parsed command.
103         self.cmd[rxtx] += chr(pdata)
104
105         # Get packets/bytes until an \r\n sequence is found (end of command).
106         if self.cmd[rxtx][-1:] != '\n':
107             return
108
109         # Handle host commands and device replies.
110         if rxtx == RX:
111             self.handle_device_reply(ss, es, rxtx, self.cmd[rxtx])
112         elif rxtx == TX:
113             self.handle_host_command(ss, es, rxtx, self.cmd[rxtx])
114         else:
115             pass # TODO: Error.
116