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