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