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