]> sigrok.org Git - libsigrokdecode.git/blob - decoders/pan1321.py
srd: pan1321: Update to new UART format.
[libsigrokdecode.git] / decoders / 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 # TODO
23 #
24
25 import sigrokdecode as srd
26
27 # Annotation feed formats
28 ANN_ASCII = 0
29
30 # UART 'data' packet type.
31 T_DATA = 1
32
33 # ...
34 RX = 0
35 TX = 1
36
37 class Decoder(srd.Decoder):
38     id = 'pan1321'
39     name = 'PAN1321'
40     longname = 'Panasonic PAN1321'
41     desc = 'TODO.'
42     longdesc = 'TODO.'
43     author = 'Uwe Hermann'
44     email = 'uwe@hermann-uwe.de'
45     license = 'gplv2+'
46     inputs = ['uart']
47     outputs = ['pan1321']
48     probes = []
49     options = {}
50     annotations = [
51         ['ASCII', 'TODO: description'],
52     ]
53
54     def __init__(self, **kwargs):
55         self.cmd = ''
56
57     def start(self, metadata):
58         # self.out_proto = self.add(srd.OUTPUT_PROTO, 'pan1321')
59         self.out_ann = self.add(srd.OUTPUT_ANN, 'pan1321')
60
61     def report(self):
62         pass
63
64     def decode(self, ss, es, data):
65         ptype, rxtx, pdata = data
66
67         # For now, ignore all UART packets except the actual data packets.
68         if ptype != T_DATA:
69             return
70
71         # Append new (ASCII) byte to the current command.
72         self.cmd += chr(pdata)
73
74         # Get packets/bytes until an \r\n sequence is found (end of command).
75         if chr(pdata) != '\n':
76             return
77
78         s = self.cmd
79
80         # FIXME: This is just a quick hack.
81         if s.startswith('AT+JSEC'):
82             pin = s[s.find('\r\n') - 4:len(s) - 2]
83             self.put(ss, es, self.out_ann,
84                      [ANN_ASCII, ['Setting Bluetooth PIN to ' + pin]])
85         elif s.startswith('AT+JSLN'):
86             name = s[s.find(',') + 1:-2]
87             self.put(ss, es, self.out_ann,
88                      [ANN_ASCII, ['Setting Bluetooth name to ' + name]])
89         else:
90             self.put(ss, es, self.out_ann, [ANN_ASCII, ['Unsupported command']])
91
92         self.cmd = ''
93