]> sigrok.org Git - libsigrokdecode.git/blame - decoders/ir_rc5/pd.py
ir_rc5: improved performance
[libsigrokdecode.git] / decoders / ir_rc5 / pd.py
CommitLineData
914f0b99
UH
1##
2## This file is part of the libsigrokdecode project.
3##
4## Copyright (C) 2014 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
4539e9ca 17## along with this program; if not, see <http://www.gnu.org/licenses/>.
914f0b99
UH
18##
19
20import sigrokdecode as srd
21from .lists import *
22
21cda951
UH
23class SamplerateError(Exception):
24 pass
25
914f0b99 26class Decoder(srd.Decoder):
6eb8f524 27 api_version = 3
914f0b99
UH
28 id = 'ir_rc5'
29 name = 'IR RC-5'
30 longname = 'IR RC-5'
31 desc = 'RC-5 infrared remote control protocol.'
32 license = 'gplv2+'
33 inputs = ['logic']
6cbba91f 34 outputs = []
d6d8a8a4 35 tags = ['IR']
6a15597a 36 channels = (
914f0b99 37 {'id': 'ir', 'name': 'IR', 'desc': 'IR data line'},
da9bcbd9 38 )
d1e2129c
BV
39 options = (
40 {'id': 'polarity', 'desc': 'Polarity', 'default': 'active-low',
41 'values': ('active-low', 'active-high')},
42 {'id': 'protocol', 'desc': 'Protocol type', 'default': 'standard',
43 'values': ('standard', 'extended')},
44 )
da9bcbd9
BV
45 annotations = (
46 ('bit', 'Bit'),
47 ('startbit1', 'Startbit 1'),
48 ('startbit2', 'Startbit 2'),
49 ('togglebit-0', 'Toggle bit 0'),
50 ('togglebit-1', 'Toggle bit 1'),
51 ('address', 'Address'),
52 ('command', 'Command'),
53 )
914f0b99
UH
54 annotation_rows = (
55 ('bits', 'Bits', (0,)),
56 ('fields', 'Fields', (1, 2, 3, 4, 5, 6)),
57 )
58
92b7b49f 59 def __init__(self):
10aeb8ea
GS
60 self.reset()
61
62 def reset(self):
914f0b99
UH
63 self.samplerate = None
64 self.samplenum = None
486b19ce 65 self.edges, self.bits, self.ss_es_bits = [], [], []
914f0b99
UH
66 self.state = 'IDLE'
67
68 def start(self):
69 self.out_ann = self.register(srd.OUTPUT_ANN)
681bad2a 70 self.next_edge = 'l' if self.options['polarity'] == 'active-low' else 'h'
914f0b99
UH
71
72 def metadata(self, key, value):
73 if key == srd.SRD_CONF_SAMPLERATE:
74 self.samplerate = value
75 # One bit: 1.78ms (one half low, one half high).
76 self.halfbit = int((self.samplerate * 0.00178) / 2.0)
77
78 def putb(self, bit1, bit2, data):
486b19ce 79 ss, es = self.ss_es_bits[bit1][0], self.ss_es_bits[bit2][1]
914f0b99
UH
80 self.put(ss, es, self.out_ann, data)
81
82 def handle_bits(self):
83 a, c, b = 0, 0, self.bits
84 # Individual raw bits.
85 for i in range(14):
86 if i == 0:
87 ss = max(0, self.bits[0][0] - self.halfbit)
88 else:
486b19ce 89 ss = self.ss_es_bits[i - 1][1]
914f0b99 90 es = self.bits[i][0] + self.halfbit
486b19ce 91 self.ss_es_bits.append([ss, es])
914f0b99
UH
92 self.putb(i, i, [0, ['%d' % self.bits[i][1]]])
93 # Bits[0:0]: Startbit 1
94 s = ['Startbit1: %d' % b[0][1], 'SB1: %d' % b[0][1], 'SB1', 'S1', 'S']
95 self.putb(0, 0, [1, s])
96 # Bits[1:1]: Startbit 2
97 ann_idx = 2
98 s = ['Startbit2: %d' % b[1][1], 'SB2: %d' % b[1][1], 'SB2', 'S2', 'S']
99 if self.options['protocol'] == 'extended':
100 s = ['CMD[6]#: %d' % b[1][1], 'C6#: %d' % b[1][1], 'C6#', 'C#', 'C']
101 ann_idx = 6
102 self.putb(1, 1, [ann_idx, s])
103 # Bits[2:2]: Toggle bit
104 s = ['Togglebit: %d' % b[2][1], 'Toggle: %d' % b[2][1],
105 'TB: %d' % b[2][1], 'TB', 'T']
106 self.putb(2, 2, [3 if b[2][1] == 0 else 4, s])
107 # Bits[3:7]: Address (MSB-first)
108 for i in range(5):
109 a |= (b[3 + i][1] << (4 - i))
110 x = system.get(a, ['Unknown', 'Unk'])
111 s = ['Address: %d (%s)' % (a, x[0]), 'Addr: %d (%s)' % (a, x[1]),
112 'Addr: %d' % a, 'A: %d' % a, 'A']
113 self.putb(3, 7, [5, s])
114 # Bits[8:13]: Command (MSB-first)
115 for i in range(6):
116 c |= (b[8 + i][1] << (5 - i))
117 if self.options['protocol'] == 'extended':
118 inverted_bit6 = 1 if b[1][1] == 0 else 0
119 c |= (inverted_bit6 << 6)
120 cmd_type = 'VCR' if x[1] in ('VCR1', 'VCR2') else 'TV'
121 x = command[cmd_type].get(c, ['Unknown', 'Unk'])
122 s = ['Command: %d (%s)' % (c, x[0]), 'Cmd: %d (%s)' % (c, x[1]),
123 'Cmd: %d' % c, 'C: %d' % c, 'C']
124 self.putb(8, 13, [6, s])
125
126 def edge_type(self):
127 # Categorize according to distance from last edge (short/long).
128 distance = self.samplenum - self.edges[-1]
129 s, l, margin = self.halfbit, self.halfbit * 2, int(self.halfbit / 2)
130 if distance in range(l - margin, l + margin + 1):
131 return 'l'
132 elif distance in range(s - margin, s + margin + 1):
133 return 's'
134 else:
16211e24
UH
135 return 'e' # Error, invalid edge distance.
136
137 def reset_decoder_state(self):
486b19ce 138 self.edges, self.bits, self.ss_es_bits = [], [], []
16211e24 139 self.state = 'IDLE'
914f0b99 140
6eb8f524 141 def decode(self):
21cda951
UH
142 if not self.samplerate:
143 raise SamplerateError('Cannot decode without samplerate.')
6eb8f524 144 while True:
914f0b99 145
681bad2a 146 (self.ir,) = self.wait({0: self.next_edge})
914f0b99
UH
147
148 # State machine.
149 if self.state == 'IDLE':
fcbd6336 150 bit = 1
914f0b99 151 self.edges.append(self.samplenum)
fcbd6336 152 self.bits.append([self.samplenum, bit])
914f0b99 153 self.state = 'MID1'
681bad2a 154 self.next_edge = 'l' if self.ir else 'h'
914f0b99 155 continue
92d992d2 156 edge = self.edge_type()
16211e24
UH
157 if edge == 'e':
158 self.reset_decoder_state() # Reset state machine upon errors.
159 continue
914f0b99 160 if self.state == 'MID1':
92d992d2
UH
161 self.state = 'START1' if edge == 's' else 'MID0'
162 bit = None if edge == 's' else 0
914f0b99 163 elif self.state == 'MID0':
92d992d2
UH
164 self.state = 'START0' if edge == 's' else 'MID1'
165 bit = None if edge == 's' else 1
914f0b99 166 elif self.state == 'START1':
92d992d2 167 if edge == 's':
914f0b99 168 self.state = 'MID1'
92d992d2 169 bit = 1 if edge == 's' else None
914f0b99 170 elif self.state == 'START0':
92d992d2 171 if edge == 's':
914f0b99 172 self.state = 'MID0'
92d992d2 173 bit = 0 if edge == 's' else None
914f0b99
UH
174
175 self.edges.append(self.samplenum)
35b380b1 176 if bit is not None:
914f0b99
UH
177 self.bits.append([self.samplenum, bit])
178
cbbccbf4 179 if len(self.bits) == 14:
914f0b99 180 self.handle_bits()
16211e24 181 self.reset_decoder_state()
914f0b99 182
681bad2a 183 self.next_edge = 'l' if self.ir else 'h'