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