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