]> sigrok.org Git - libsigrokdecode.git/blame - decoders/pan1321/pan1321.py
srd: uart: Use strings for packet types.
[libsigrokdecode.git] / decoders / pan1321 / 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
d9c0d0a3
UH
32# ...
33RX = 0
34TX = 1
35
677d597b 36class Decoder(srd.Decoder):
a2c2afd9 37 api_version = 1
5cc2d7bb 38 id = 'pan1321'
3d3da57d
UH
39 name = 'PAN1321'
40 longname = 'Panasonic PAN1321'
5cc2d7bb
UH
41 desc = 'TODO.'
42 longdesc = 'TODO.'
5cc2d7bb
UH
43 license = 'gplv2+'
44 inputs = ['uart']
45 outputs = ['pan1321']
9a12a6e7 46 probes = []
b77614bc 47 optional_probes = []
9a12a6e7 48 options = {}
e97b6ef5 49 annotations = [
eb7082c9 50 ['ASCII', 'TODO: description'],
5cc2d7bb
UH
51 ]
52
53 def __init__(self, **kwargs):
5dd1c937 54 self.cmd = ['', '']
5cc2d7bb
UH
55
56 def start(self, metadata):
56202222
UH
57 # self.out_proto = self.add(srd.OUTPUT_PROTO, 'pan1321')
58 self.out_ann = self.add(srd.OUTPUT_ANN, 'pan1321')
5cc2d7bb
UH
59
60 def report(self):
61 pass
62
5dd1c937
UH
63 def handle_host_command(self, ss, es, rxtx, s):
64 if s.startswith('AT+JSEC'):
fd4aa8aa 65 pin = s[-4:]
5dd1c937
UH
66 self.put(ss, es, self.out_ann,
67 [ANN_ASCII, ['Host set the Bluetooth PIN to ' + pin]])
68 elif s.startswith('AT+JSLN'):
fd4aa8aa 69 name = s[s.find(',') + 1:]
5dd1c937
UH
70 self.put(ss, es, self.out_ann,
71 [ANN_ASCII, ['Host set the Bluetooth name to ' + name]])
72 else:
73 self.put(ss, es, self.out_ann,
decde15e 74 [ANN_ASCII, ['Host sent unsupported command: %s' % s]])
5dd1c937
UH
75 self.cmd[rxtx] = ''
76
77 def handle_device_reply(self, ss, es, rxtx, s):
fd4aa8aa 78 if s == 'ROK':
5dd1c937
UH
79 self.put(ss, es, self.out_ann,
80 [ANN_ASCII, ['Device initialized correctly']])
fd4aa8aa 81 elif s == 'OK':
5dd1c937
UH
82 self.put(ss, es, self.out_ann,
83 [ANN_ASCII, ['Device acknowledged last command']])
84 elif s.startswith('ERR'):
85 error = s[s.find('=') + 1:]
86 self.put(ss, es, self.out_ann,
87 [ANN_ASCII, ['Device sent error code ' + error]])
88 else:
89 self.put(ss, es, self.out_ann,
decde15e 90 [ANN_ASCII, ['Device sent an unknown reply: %s' % s]])
5dd1c937
UH
91 self.cmd[rxtx] = ''
92
5cc2d7bb 93 def decode(self, ss, es, data):
d9c0d0a3 94 ptype, rxtx, pdata = data
5cc2d7bb
UH
95
96 # For now, ignore all UART packets except the actual data packets.
b9e44d1e 97 if ptype != 'DATA':
5cc2d7bb
UH
98 return
99
5dd1c937
UH
100 # Append a new (ASCII) byte to the currently built/parsed command.
101 self.cmd[rxtx] += chr(pdata)
5cc2d7bb
UH
102
103 # Get packets/bytes until an \r\n sequence is found (end of command).
5dd1c937 104 if self.cmd[rxtx][-1:] != '\n':
5cc2d7bb
UH
105 return
106
5dd1c937 107 # Handle host commands and device replies.
fd4aa8aa 108 # We remove trailing \r\n from the strings before handling them.
5dd1c937 109 if rxtx == RX:
fd4aa8aa 110 self.handle_device_reply(ss, es, rxtx, self.cmd[rxtx][:-2])
5dd1c937 111 elif rxtx == TX:
fd4aa8aa 112 self.handle_host_command(ss, es, rxtx, self.cmd[rxtx][:-2])
5cc2d7bb 113 else:
decde15e 114 raise Exception('Invalid rxtx value: %d' % rxtx)
5cc2d7bb 115