]> sigrok.org Git - libsigrokdecode.git/blame - decoders/ir_nec/pd.py
ir_nec: rephrase button lookup and addr/cmd validity checks
[libsigrokdecode.git] / decoders / ir_nec / pd.py
CommitLineData
5e6fa9cc
GY
1##
2## This file is part of the libsigrokdecode project.
3##
4## Copyright (C) 2014 Gump Yang <gump.yang@gmail.com>
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/>.
5e6fa9cc
GY
18##
19
20import sigrokdecode as srd
12fecc8f 21from .lists import *
5e6fa9cc 22
21cda951
UH
23class SamplerateError(Exception):
24 pass
25
34ed4b3f
GS
26class Pin:
27 IR, = range(1)
28
29class Ann:
30 BIT, AGC, LONG_PAUSE, SHORT_PAUSE, STOP_BIT, \
31 LEADER_CODE, ADDR, ADDR_INV, CMD, CMD_INV, REPEAT_CODE, \
32 REMOTE, WARN = range(13)
33
5e6fa9cc 34class Decoder(srd.Decoder):
5844bb0f 35 api_version = 3
00962e76
UH
36 id = 'ir_nec'
37 name = 'IR NEC'
38 longname = 'IR NEC'
39 desc = 'NEC infrared remote control protocol.'
5e6fa9cc
GY
40 license = 'gplv2+'
41 inputs = ['logic']
6cbba91f 42 outputs = []
d6d8a8a4 43 tags = ['IR']
6a15597a 44 channels = (
5e6fa9cc 45 {'id': 'ir', 'name': 'IR', 'desc': 'Data line'},
bee57ee8
UH
46 )
47 options = (
48 {'id': 'polarity', 'desc': 'Polarity', 'default': 'active-low',
49 'values': ('active-low', 'active-high')},
fb1870b0 50 {'id': 'cd_freq', 'desc': 'Carrier Frequency', 'default': 0},
bee57ee8
UH
51 )
52 annotations = (
53 ('bit', 'Bit'),
54 ('agc-pulse', 'AGC pulse'),
55 ('longpause', 'Long pause'),
56 ('shortpause', 'Short pause'),
57 ('stop-bit', 'Stop bit'),
58 ('leader-code', 'Leader code'),
59 ('addr', 'Address'),
60 ('addr-inv', 'Address#'),
61 ('cmd', 'Command'),
62 ('cmd-inv', 'Command#'),
63 ('repeat-code', 'Repeat code'),
64 ('remote', 'Remote'),
e144452b 65 ('warning', 'Warning'),
bee57ee8 66 )
5e6fa9cc 67 annotation_rows = (
34ed4b3f
GS
68 ('bits', 'Bits', (Ann.BIT, Ann.AGC, Ann.LONG_PAUSE, Ann.SHORT_PAUSE, Ann.STOP_BIT)),
69 ('fields', 'Fields', (Ann.LEADER_CODE, Ann.ADDR, Ann.ADDR_INV, Ann.CMD, Ann.CMD_INV, Ann.REPEAT_CODE)),
70 ('remote-vals', 'Remote', (Ann.REMOTE,)),
71 ('warnings', 'Warnings', (Ann.WARN,)),
5e6fa9cc
GY
72 )
73
5e6fa9cc
GY
74 def putx(self, data):
75 self.put(self.ss_start, self.samplenum, self.out_ann, data)
76
77 def putb(self, data):
78 self.put(self.ss_bit, self.samplenum, self.out_ann, data)
79
70835fd4
UH
80 def putd(self, data):
81 name = self.state.title()
34ed4b3f
GS
82 d = {'ADDRESS': Ann.ADDR, 'ADDRESS#': Ann.ADDR_INV,
83 'COMMAND': Ann.CMD, 'COMMAND#': Ann.CMD_INV}
70835fd4
UH
84 s = {'ADDRESS': ['ADDR', 'A'], 'ADDRESS#': ['ADDR#', 'A#'],
85 'COMMAND': ['CMD', 'C'], 'COMMAND#': ['CMD#', 'C#']}
34ed4b3f
GS
86 self.putx([d[self.state], [
87 '{}: 0x{:02X}'.format(name, data),
88 '{}: 0x{:02X}'.format(s[self.state][0], data),
89 '{}: 0x{:02X}'.format(s[self.state][1], data),
90 s[self.state][1],
91 ]])
70835fd4
UH
92
93 def putstop(self, ss):
94 self.put(ss, ss + self.stop, self.out_ann,
34ed4b3f 95 [Ann.STOP_BIT, ['Stop bit', 'Stop', 'St', 'S']])
70835fd4
UH
96
97 def putpause(self, p):
98 self.put(self.ss_start, self.ss_other_edge, self.out_ann,
34ed4b3f
GS
99 [Ann.AGC, ['AGC pulse', 'AGC', 'A']])
100 idx = Ann.LONG_PAUSE if p == 'Long' else Ann.SHORT_PAUSE
101 self.put(self.ss_other_edge, self.samplenum, self.out_ann, [idx, [
102 '{} pause'.format(p),
103 '{}-pause'.format(p[0]),
104 '{}P'.format(p[0]),
105 'P',
106 ]])
70835fd4 107
12fecc8f
UH
108 def putremote(self):
109 dev = address.get(self.addr, 'Unknown device')
d478372a
GS
110 buttons = command.get(self.addr, {})
111 btn = buttons.get(self.cmd, ['Unknown', 'Unk'])
34ed4b3f
GS
112 self.put(self.ss_remote, self.ss_bit + self.stop, self.out_ann, [Ann.REMOTE, [
113 '{}: {}'.format(dev, btn[0]),
114 '{}: {}'.format(dev, btn[1]),
115 '{}'.format(btn[1]),
116 ]])
12fecc8f 117
92b7b49f 118 def __init__(self):
10aeb8ea
GS
119 self.reset()
120
121 def reset(self):
5e6fa9cc 122 self.state = 'IDLE'
12fecc8f 123 self.ss_bit = self.ss_start = self.ss_other_edge = self.ss_remote = 0
5844bb0f 124 self.data = self.count = self.active = None
12fecc8f 125 self.addr = self.cmd = None
5e6fa9cc
GY
126
127 def start(self):
5e6fa9cc 128 self.out_ann = self.register(srd.OUTPUT_ANN)
5844bb0f 129
5e6fa9cc
GY
130 def metadata(self, key, value):
131 if key == srd.SRD_CONF_SAMPLERATE:
132 self.samplerate = value
b3f83fda
GS
133
134 def calc_rate(self):
82ea183f 135 self.tolerance = 0.05 # +/-5%
73fc79e0
UH
136 self.lc = int(self.samplerate * 0.0135) - 1 # 13.5ms
137 self.rc = int(self.samplerate * 0.01125) - 1 # 11.25ms
138 self.dazero = int(self.samplerate * 0.001125) - 1 # 1.125ms
139 self.daone = int(self.samplerate * 0.00225) - 1 # 2.25ms
70835fd4 140 self.stop = int(self.samplerate * 0.000652) - 1 # 0.652ms
5e6fa9cc 141
82ea183f
GM
142 def compare_with_tolerance(self, measured, base):
143 return (measured >= base * (1 - self.tolerance)
144 and measured <= base * (1 + self.tolerance))
145
70835fd4 146 def handle_bit(self, tick):
5bb61a25 147 ret = None
82ea183f 148 if self.compare_with_tolerance(tick, self.dazero):
5e6fa9cc 149 ret = 0
82ea183f 150 elif self.compare_with_tolerance(tick, self.daone):
5e6fa9cc 151 ret = 1
5bb61a25 152 if ret in (0, 1):
34ed4b3f 153 self.putb([Ann.BIT, ['{:d}'.format(ret)]])
5bb61a25 154 self.data |= (ret << self.count) # LSB-first
5e6fa9cc 155 self.count = self.count + 1
5e6fa9cc 156 self.ss_bit = self.samplenum
5e6fa9cc 157
d478372a
GS
158 def data_ok(self, check):
159 name = self.state.title()
160 valid = ((self.data >> 8) ^ (self.data & 0xff)) == 0xff
70835fd4 161 if self.count == 8:
12fecc8f
UH
162 if self.state == 'ADDRESS':
163 self.addr = self.data
164 if self.state == 'COMMAND':
165 self.cmd = self.data
70835fd4
UH
166 self.putd(self.data)
167 self.ss_start = self.samplenum
168 return True
d478372a 169 if check and not valid:
34ed4b3f 170 self.putx([Ann.WARN, ['{} error: 0x{:04X}'.format(name, self.data)]])
d478372a
GS
171 else:
172 self.putd(self.data >> 8)
5e6fa9cc
GY
173 self.data = self.count = 0
174 self.ss_bit = self.ss_start = self.samplenum
d478372a 175 return valid
5e6fa9cc 176
5844bb0f 177 def decode(self):
21cda951
UH
178 if not self.samplerate:
179 raise SamplerateError('Cannot decode without samplerate.')
b3f83fda 180 self.calc_rate()
fb1870b0
GS
181
182 cd_count = None
183 if self.options['cd_freq']:
184 cd_count = int(self.samplerate / self.options['cd_freq']) + 1
1865f48d
PM
185 prev_ir = None
186
187 self.active = 0 if self.options['polarity'] == 'active-low' else 1
fb1870b0 188
5844bb0f 189 while True:
fb1870b0
GS
190 # Detect changes in the presence of an active input signal.
191 # The decoder can either be fed an already filtered RX signal
192 # or optionally can detect the presence of a carrier. Periods
193 # of inactivity (signal changes slower than the carrier freq,
194 # if specified) pass on the most recently sampled level. This
195 # approach works for filtered and unfiltered input alike, and
196 # only slightly extends the active phase of input signals with
197 # carriers included by one period of the carrier frequency.
198 # IR based communication protocols can cope with this slight
199 # inaccuracy just fine by design. Enabling carrier detection
200 # on already filtered signals will keep the length of their
201 # active period, but will shift their signal changes by one
202 # carrier period before they get passed to decoding logic.
203 if cd_count:
34ed4b3f 204 (cur_ir,) = self.wait([{Pin.IR: 'e'}, {'skip': cd_count}])
fb1870b0
GS
205 if self.matched[0]:
206 cur_ir = self.active
207 if cur_ir == prev_ir:
208 continue
209 prev_ir = cur_ir
210 self.ir = cur_ir
211 else:
34ed4b3f 212 (self.ir,) = self.wait({Pin.IR: 'e'})
00962e76 213
70835fd4 214 if self.ir != self.active:
5844bb0f 215 # Save the non-active edge, then wait for the next edge.
70835fd4 216 self.ss_other_edge = self.samplenum
5e6fa9cc
GY
217 continue
218
73fc79e0
UH
219 b = self.samplenum - self.ss_bit
220
221 # State machine.
222 if self.state == 'IDLE':
82ea183f 223 if self.compare_with_tolerance(b, self.lc):
70835fd4 224 self.putpause('Long')
34ed4b3f 225 self.putx([Ann.LEADER_CODE, ['Leader code', 'Leader', 'LC', 'L']])
12fecc8f 226 self.ss_remote = self.ss_start
73fc79e0
UH
227 self.data = self.count = 0
228 self.state = 'ADDRESS'
82ea183f 229 elif self.compare_with_tolerance(b, self.rc):
70835fd4
UH
230 self.putpause('Short')
231 self.putstop(self.samplenum)
232 self.samplenum += self.stop
34ed4b3f 233 self.putx([Ann.REPEAT_CODE, ['Repeat code', 'Repeat', 'RC', 'R']])
73fc79e0
UH
234 self.data = self.count = 0
235 self.ss_bit = self.ss_start = self.samplenum
236 elif self.state == 'ADDRESS':
70835fd4
UH
237 self.handle_bit(b)
238 if self.count == 8:
d478372a
GS
239 self.data_ok(False)
240 self.state = 'ADDRESS#'
70835fd4
UH
241 elif self.state == 'ADDRESS#':
242 self.handle_bit(b)
243 if self.count == 16:
d478372a 244 self.state = 'COMMAND' if self.data_ok(True) else 'IDLE'
73fc79e0 245 elif self.state == 'COMMAND':
70835fd4
UH
246 self.handle_bit(b)
247 if self.count == 8:
d478372a
GS
248 self.data_ok(False)
249 self.state = 'COMMAND#'
70835fd4
UH
250 elif self.state == 'COMMAND#':
251 self.handle_bit(b)
252 if self.count == 16:
d478372a 253 self.state = 'STOP' if self.data_ok(True) else 'IDLE'
70835fd4
UH
254 elif self.state == 'STOP':
255 self.putstop(self.ss_bit)
12fecc8f 256 self.putremote()
70835fd4
UH
257 self.ss_bit = self.ss_start = self.samplenum
258 self.state = 'IDLE'