]> cloudbase.mooo.com Git - irmp.git/blob - irmp.h
version 2.0.0-pre7: added support for ATtiny84, added ISR in main.c, corrected timer1...
[irmp.git] / irmp.h
1 /*---------------------------------------------------------------------------------------------------------------------------------------------------
2 * irmp.h
3 *
4 * Copyright (c) 2009-2011 Frank Meyer - frank(at)fli4l.de
5 *
6 * $Id: irmp.h,v 1.65 2011/09/08 13:22:16 fm Exp $
7 *
8 * ATMEGA88 @ 8 MHz
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *---------------------------------------------------------------------------------------------------------------------------------------------------
15 */
16
17 #ifndef _WC_IRMP_H_
18 #define _WC_IRMP_H_
19
20 /*---------------------------------------------------------------------------------------------------------------------------------------------------
21 * timing constants:
22 *---------------------------------------------------------------------------------------------------------------------------------------------------
23 */
24 #define IRMP_TIMEOUT_TIME 16500.0e-6 // timeout after 16.5 ms darkness
25 #define IRMP_TIMEOUT_TIME_MS 16500L // timeout after 16.5 ms darkness
26
27 #if IRMP_SUPPORT_NIKON_PROTOCOL == 1
28 #define IRMP_TIMEOUT_NIKON_TIME 29500.0e-6 // 2nd timeout after 29.5 ms darkness (only for NIKON!)
29 #define IRMP_TIMEOUT_NIKON_TIME_MS 29500L // 2nd timeout after 29.5 ms darkness
30 typedef uint16_t PAUSE_LEN;
31 #define IRMP_TIMEOUT_NIKON_LEN (PAUSE_LEN)(F_INTERRUPTS * IRMP_TIMEOUT_NIKON_TIME + 0.5)
32 #else
33 #if (F_INTERRUPTS * IRMP_TIMEOUT_TIME_MS) / 1000000 >= 254
34 typedef uint16_t PAUSE_LEN;
35 #else
36 typedef uint8_t PAUSE_LEN;
37 #endif
38 #endif
39
40 #define IRMP_TIMEOUT_LEN (PAUSE_LEN)(F_INTERRUPTS * IRMP_TIMEOUT_TIME + 0.5)
41
42 /*---------------------------------------------------------------------------------------------------------------------------------------------------
43 * IR protocols
44 *---------------------------------------------------------------------------------------------------------------------------------------------------
45 */
46 #define IRMP_SIRCS_PROTOCOL 1 // Sony
47 #define IRMP_NEC_PROTOCOL 2 // NEC, Pioneer, JVC, Toshiba, NoName etc.
48 #define IRMP_SAMSUNG_PROTOCOL 3 // Samsung
49 #define IRMP_MATSUSHITA_PROTOCOL 4 // Matsushita
50 #define IRMP_KASEIKYO_PROTOCOL 5 // Kaseikyo (Panasonic etc)
51 #define IRMP_RECS80_PROTOCOL 6 // Philips, Thomson, Nordmende, Telefunken, Saba
52 #define IRMP_RC5_PROTOCOL 7 // Philips etc
53 #define IRMP_DENON_PROTOCOL 8 // Denon, Sharp
54 #define IRMP_RC6_PROTOCOL 9 // Philips etc
55 #define IRMP_SAMSUNG32_PROTOCOL 10 // Samsung32: no sync pulse at bit 16, length 32 instead of 37
56 #define IRMP_APPLE_PROTOCOL 11 // Apple, very similar to NEC
57 #define IRMP_RECS80EXT_PROTOCOL 12 // Philips, Technisat, Thomson, Nordmende, Telefunken, Saba
58 #define IRMP_NUBERT_PROTOCOL 13 // Nubert
59 #define IRMP_BANG_OLUFSEN_PROTOCOL 14 // Bang & Olufsen
60 #define IRMP_GRUNDIG_PROTOCOL 15 // Grundig
61 #define IRMP_NOKIA_PROTOCOL 16 // Nokia
62 #define IRMP_SIEMENS_PROTOCOL 17 // Siemens, e.g. Gigaset
63 #define IRMP_FDC_PROTOCOL 18 // FDC keyboard
64 #define IRMP_RCCAR_PROTOCOL 19 // RC Car
65 #define IRMP_JVC_PROTOCOL 20 // JVC (NEC with 16 bits)
66 #define IRMP_RC6A_PROTOCOL 21 // RC6A, e.g. Kathrein, XBOX
67 #define IRMP_NIKON_PROTOCOL 22 // Nikon
68 #define IRMP_RUWIDO_PROTOCOL 23 // Ruwido, e.g. T-Home Mediareceiver
69 #define IRMP_IR60_PROTOCOL 24 // IR60 (SAB2008)
70 #define IRMP_KATHREIN_PROTOCOL 25 // Kathrein
71 #define IRMP_NETBOX_PROTOCOL 26 // Netbox keyboard (bitserial)
72 #define IRMP_NEC16_PROTOCOL 27 // NEC with 16 bits (incl. sync)
73 #define IRMP_NEC42_PROTOCOL 28 // NEC with 42 bits
74 #define IRMP_LEGO_PROTOCOL 29 // LEGO Power Functions RC
75 #define IRMP_THOMSON_PROTOCOL 30 // Thomson
76 #define IRMP_MERLIN_PROTOCOL 31 // Pollin Merlin keyboard (bitserial)
77
78 #define IRMP_N_PROTOCOLS 31 // number of supported protocols
79
80 #define IRMP_IMON_PROTOCOL 99 // Imon (bitserial) PROTOTYPE!
81
82 // some flags of struct IRMP_PARAMETER:
83 #define IRMP_PARAM_FLAG_IS_MANCHESTER 0x01
84 #define IRMP_PARAM_FLAG_1ST_PULSE_IS_1 0x02
85 #define IRMP_PARAM_FLAG_IS_SERIAL 0x04
86
87 #define SIRCS_START_BIT_PULSE_TIME 2400.0e-6 // 2400 usec pulse
88 #define SIRCS_START_BIT_PAUSE_TIME 600.0e-6 // 600 usec pause
89 #define SIRCS_1_PULSE_TIME 1200.0e-6 // 1200 usec pulse
90 #define SIRCS_0_PULSE_TIME 600.0e-6 // 600 usec pulse
91 #define SIRCS_PAUSE_TIME 600.0e-6 // 600 usec pause
92 #define SIRCS_FRAMES 3 // SIRCS sends each frame 3 times
93 #define SIRCS_AUTO_REPETITION_PAUSE_TIME 25.0e-3 // auto repetition after 25ms
94 #define SIRCS_FRAME_REPEAT_PAUSE_TIME 25.0e-3 // frame repeat after 25ms
95 #define SIRCS_ADDRESS_OFFSET 15 // skip 15 bits
96 #define SIRCS_ADDRESS_LEN 5 // read up to 5 address bits
97 #define SIRCS_COMMAND_OFFSET 0 // skip 0 bits
98 #define SIRCS_COMMAND_LEN 15 // read 12-15 command bits
99 #define SIRCS_MINIMUM_DATA_LEN 12 // minimum data length
100 #define SIRCS_COMPLETE_DATA_LEN 20 // complete length - may be up to 20
101 #define SIRCS_STOP_BIT 0 // has no stop bit
102 #define SIRCS_LSB 1 // LSB...MSB
103 #define SIRCS_FLAGS 0 // flags
104
105 #define NEC_START_BIT_PULSE_TIME 9000.0e-6 // 9000 usec pulse
106 #define NEC_START_BIT_PAUSE_TIME 4500.0e-6 // 4500 usec pause
107 #define NEC_REPEAT_START_BIT_PAUSE_TIME 2250.0e-6 // 2250 usec pause
108 #define NEC_PULSE_TIME 560.0e-6 // 560 usec pulse
109 #define NEC_1_PAUSE_TIME 1690.0e-6 // 1690 usec pause
110 #define NEC_0_PAUSE_TIME 560.0e-6 // 560 usec pause
111 #define NEC_FRAME_REPEAT_PAUSE_TIME 40.0e-3 // frame repeat after 40ms
112 #define NEC_ADDRESS_OFFSET 0 // skip 0 bits
113 #define NEC_ADDRESS_LEN 16 // read 16 address bits
114 #define NEC_COMMAND_OFFSET 16 // skip 16 bits (8 address + 8 /address)
115 #define NEC_COMMAND_LEN 16 // read 16 bits (8 command + 8 /command)
116 #define NEC_COMPLETE_DATA_LEN 32 // complete length
117 #define NEC_STOP_BIT 1 // has stop bit
118 #define NEC_LSB 1 // LSB...MSB
119 #define NEC_FLAGS 0 // flags
120
121 #define NEC42_ADDRESS_OFFSET 0 // skip 0 bits
122 #define NEC42_ADDRESS_LEN 13 // read 13 address bits
123 #define NEC42_COMMAND_OFFSET 26 // skip 26 bits (2 x 13 address bits)
124 #define NEC42_COMMAND_LEN 8 // read 8 command bits
125 #define NEC42_COMPLETE_DATA_LEN 42 // complete length (2 x 13 + 2 x 8)
126
127 #define NEC16_ADDRESS_OFFSET 0 // skip 0 bits
128 #define NEC16_ADDRESS_LEN 8 // read 8 address bits
129 #define NEC16_COMMAND_OFFSET 8 // skip 8 bits (8 address)
130 #define NEC16_COMMAND_LEN 8 // read 8 bits (8 command)
131 #define NEC16_COMPLETE_DATA_LEN 16 // complete length
132
133 #define SAMSUNG_START_BIT_PULSE_TIME 4500.0e-6 // 4500 usec pulse
134 #define SAMSUNG_START_BIT_PAUSE_TIME 4500.0e-6 // 4500 usec pause
135 #define SAMSUNG_PULSE_TIME 550.0e-6 // 550 usec pulse
136 #define SAMSUNG_1_PAUSE_TIME 1450.0e-6 // 1450 usec pause
137 #define SAMSUNG_0_PAUSE_TIME 450.0e-6 // 450 usec pause
138 #define SAMSUNG_FRAME_REPEAT_PAUSE_TIME 25.0e-3 // frame repeat after 25ms
139 #define SAMSUNG_ADDRESS_OFFSET 0 // skip 0 bits
140 #define SAMSUNG_ADDRESS_LEN 16 // read 16 address bits
141 #define SAMSUNG_ID_OFFSET 17 // skip 16 + 1 sync bit
142 #define SAMSUNG_ID_LEN 4 // read 4 id bits
143 #define SAMSUNG_COMMAND_OFFSET 21 // skip 16 + 1 sync + 4 data bits
144 #define SAMSUNG_COMMAND_LEN 16 // read 16 command bits
145 #define SAMSUNG_COMPLETE_DATA_LEN 37 // complete length
146 #define SAMSUNG_STOP_BIT 1 // has stop bit
147 #define SAMSUNG_LSB 1 // LSB...MSB?
148 #define SAMSUNG_FLAGS 0 // flags
149
150 #define SAMSUNG32_COMMAND_OFFSET 16 // skip 16 bits
151 #define SAMSUNG32_COMMAND_LEN 16 // read 16 command bits
152 #define SAMSUNG32_COMPLETE_DATA_LEN 32 // complete length
153 #define SAMSUNG32_FRAMES 2 // SAMSUNG32 sends each frame 2 times
154 #define SAMSUNG32_AUTO_REPETITION_PAUSE_TIME 47.0e-3 // repetition after 47 ms
155 #define SAMSUNG32_FRAME_REPEAT_PAUSE_TIME 47.0e-3 // frame repeat after 40ms
156
157 #define MATSUSHITA_START_BIT_PULSE_TIME 3488.0e-6 // 3488 usec pulse
158 #define MATSUSHITA_START_BIT_PAUSE_TIME 3488.0e-6 // 3488 usec pause
159 #define MATSUSHITA_PULSE_TIME 872.0e-6 // 872 usec pulse
160 #define MATSUSHITA_1_PAUSE_TIME 2616.0e-6 // 2616 usec pause
161 #define MATSUSHITA_0_PAUSE_TIME 872.0e-6 // 872 usec pause
162 #define MATSUSHITA_FRAME_REPEAT_PAUSE_TIME 45.0e-3 // frame repeat after 45ms
163 #define MATSUSHITA_ADDRESS_OFFSET 12 // skip 12 bits
164 #define MATSUSHITA_ADDRESS_LEN 12 // read 12 address bits
165 #define MATSUSHITA_COMMAND_OFFSET 0 // skip 0 bits
166 #define MATSUSHITA_COMMAND_LEN 12 // read 12 bits (6 custom + 6 command)
167 #define MATSUSHITA_COMPLETE_DATA_LEN 24 // complete length
168 #define MATSUSHITA_STOP_BIT 1 // has stop bit
169 #define MATSUSHITA_LSB 1 // LSB...MSB?
170 #define MATSUSHITA_FLAGS 0 // flags
171
172 #define KASEIKYO_START_BIT_PULSE_TIME 3380.0e-6 // 3380 usec pulse
173 #define KASEIKYO_START_BIT_PAUSE_TIME 1690.0e-6 // 1690 usec pause
174 #define KASEIKYO_PULSE_TIME 423.0e-6 // 525 usec pulse
175 #define KASEIKYO_1_PAUSE_TIME 1269.0e-6 // 525 usec pause
176 #define KASEIKYO_0_PAUSE_TIME 423.0e-6 // 1690 usec pause
177 #define KASEIKYO_AUTO_REPETITION_PAUSE_TIME 74.0e-3 // repetition after 74 ms
178 #define KASEIKYO_FRAME_REPEAT_PAUSE_TIME 74.0e-3 // frame repeat after 74 ms
179 #define KASEIKYO_ADDRESS_OFFSET 0 // skip 0 bits
180 #define KASEIKYO_ADDRESS_LEN 16 // read 16 address bits
181 #define KASEIKYO_COMMAND_OFFSET 28 // skip 28 bits (16 manufacturer & 4 parity & 8 genre)
182 #define KASEIKYO_COMMAND_LEN 12 // read 12 command bits (10 real command & 2 id)
183 #define KASEIKYO_COMPLETE_DATA_LEN 48 // complete length
184 #define KASEIKYO_STOP_BIT 1 // has stop bit
185 #define KASEIKYO_LSB 1 // LSB...MSB?
186 #define KASEIKYO_FRAMES 2 // KASEIKYO sends 1st frame 2 times
187 #define KASEIKYO_FLAGS 0 // flags
188
189 #define RECS80_START_BIT_PULSE_TIME 158.0e-6 // 158 usec pulse
190 #define RECS80_START_BIT_PAUSE_TIME 7432.0e-6 // 7432 usec pause
191 #define RECS80_PULSE_TIME 158.0e-6 // 158 usec pulse
192 #define RECS80_1_PAUSE_TIME 7432.0e-6 // 7432 usec pause
193 #define RECS80_0_PAUSE_TIME 4902.0e-6 // 4902 usec pause
194 #define RECS80_FRAME_REPEAT_PAUSE_TIME 45.0e-3 // frame repeat after 45ms
195 #define RECS80_ADDRESS_OFFSET 1 // skip 1 bit (toggle bit)
196 #define RECS80_ADDRESS_LEN 3 // read 3 address bits
197 #define RECS80_COMMAND_OFFSET 4 // skip 4 bits (1 toggle + 3 address)
198 #define RECS80_COMMAND_LEN 6 // read 6 command bits
199 #define RECS80_COMPLETE_DATA_LEN 10 // complete length
200 #define RECS80_STOP_BIT 1 // has stop bit
201 #define RECS80_LSB 0 // MSB...LSB
202 #define RECS80_FLAGS 0 // flags
203
204 #define RC5_BIT_TIME 889.0e-6 // 889 usec pulse/pause
205 #define RC5_FRAME_REPEAT_PAUSE_TIME 45.0e-3 // frame repeat after 45ms
206
207 #define RC5_ADDRESS_OFFSET 1 // skip 1 bit (2nd start)
208 #define RC5_ADDRESS_LEN 6 // read 1 toggle bit (for key repetition detection) + 5 address bits
209 #define RC5_COMMAND_OFFSET 7 // skip 5 bits (2nd start + 1 toggle + 5 address)
210 #define RC5_COMMAND_LEN 6 // read 6 command bits
211 #define RC5_COMPLETE_DATA_LEN 13 // complete length
212 #define RC5_STOP_BIT 0 // has no stop bit
213 #define RC5_LSB 0 // MSB...LSB
214 #define RC5_FLAGS IRMP_PARAM_FLAG_IS_MANCHESTER // flags
215
216 #define DENON_PULSE_TIME 310.0e-6 // 310 usec pulse in practice, 275 in theory
217 #define DENON_1_PAUSE_TIME 1780.0e-6 // 1780 usec pause in practice, 1900 in theory
218 #define DENON_0_PAUSE_TIME 745.0e-6 // 745 usec pause in practice, 775 in theory
219 #define DENON_FRAMES 2 // DENON sends each frame 2 times
220 #define DENON_AUTO_REPETITION_PAUSE_TIME 65.0e-3 // inverted repetition after 65ms
221 #define DENON_FRAME_REPEAT_PAUSE_TIME 65.0e-3 // frame repeat after 65ms
222 #define DENON_ADDRESS_OFFSET 0 // skip 0 bits
223 #define DENON_ADDRESS_LEN 5 // read 5 address bits
224 #define DENON_COMMAND_OFFSET 5 // skip 5
225 #define DENON_COMMAND_LEN 10 // read 10 command bits
226 #define DENON_COMPLETE_DATA_LEN 15 // complete length
227 #define DENON_STOP_BIT 1 // has stop bit
228 #define DENON_LSB 0 // MSB...LSB
229 #define DENON_FLAGS 0 // flags
230
231 #define RC6_START_BIT_PULSE_TIME 2666.0e-6 // 2.666 msec pulse
232 #define RC6_START_BIT_PAUSE_TIME 889.0e-6 // 889 usec pause
233 #define RC6_TOGGLE_BIT_TIME 889.0e-6 // 889 msec pulse/pause
234 #define RC6_BIT_TIME 444.0e-6 // 889 usec pulse/pause
235 #define RC6_FRAME_REPEAT_PAUSE_TIME 45.0e-3 // frame repeat after 45ms
236 #define RC6_ADDRESS_OFFSET 5 // skip "1" + 3 mode bits + 1 toggle bit
237 #define RC6_ADDRESS_LEN 8 // read 8 address bits
238 #define RC6_COMMAND_OFFSET 13 // skip 12 bits ("1" + 3 mode + 1 toggle + 8 address)
239 #define RC6_COMMAND_LEN 8 // read 8 command bits
240 #define RC6_COMPLETE_DATA_LEN_SHORT 21 // complete length
241 #define RC6_COMPLETE_DATA_LEN_LONG 36 // complete length
242 #define RC6_STOP_BIT 0 // has no stop bit
243 #define RC6_LSB 0 // MSB...LSB
244 #define RC6_FLAGS (IRMP_PARAM_FLAG_IS_MANCHESTER | IRMP_PARAM_FLAG_1ST_PULSE_IS_1) // flags
245
246 #define RECS80EXT_START_BIT_PULSE_TIME 158.0e-6 // 158 usec pulse
247 #define RECS80EXT_START_BIT_PAUSE_TIME 3637.0e-6 // 3637 usec pause
248 #define RECS80EXT_PULSE_TIME 158.0e-6 // 158 usec pulse
249 #define RECS80EXT_1_PAUSE_TIME 7432.0e-6 // 7432 usec pause
250 #define RECS80EXT_0_PAUSE_TIME 4902.0e-6 // 4902 usec pause
251 #define RECS80EXT_FRAME_REPEAT_PAUSE_TIME 45.0e-3 // frame repeat after 45ms
252 #define RECS80EXT_ADDRESS_OFFSET 2 // skip 2 bits (2nd start + 1 toggle)
253 #define RECS80EXT_ADDRESS_LEN 4 // read 4 address bits
254 #define RECS80EXT_COMMAND_OFFSET 6 // skip 6 bits (2nd start + 1 toggle + 4 address)
255 #define RECS80EXT_COMMAND_LEN 6 // read 6 command bits
256 #define RECS80EXT_COMPLETE_DATA_LEN 12 // complete length
257 #define RECS80EXT_STOP_BIT 1 // has stop bit
258 #define RECS80EXT_LSB 0 // MSB...LSB
259 #define RECS80EXT_FLAGS 0 // flags
260
261 #define NUBERT_START_BIT_PULSE_TIME 1340.0e-6 // 1340 usec pulse
262 #define NUBERT_START_BIT_PAUSE_TIME 340.0e-6 // 340 usec pause
263 #define NUBERT_1_PULSE_TIME 1340.0e-6 // 1340 usec pulse
264 #define NUBERT_1_PAUSE_TIME 340.0e-6 // 340 usec pause
265 #define NUBERT_0_PULSE_TIME 500.0e-6 // 500 usec pulse
266 #define NUBERT_0_PAUSE_TIME 1300.0e-6 // 1300 usec pause
267 #define NUBERT_FRAMES 2 // Nubert sends 2 frames
268 #define NUBERT_AUTO_REPETITION_PAUSE_TIME 35.0e-3 // auto repetition after 35ms
269 #define NUBERT_FRAME_REPEAT_PAUSE_TIME 35.0e-3 // frame repeat after 45ms
270 #define NUBERT_ADDRESS_OFFSET 0 // skip 0 bits
271 #define NUBERT_ADDRESS_LEN 0 // read 0 address bits
272 #define NUBERT_COMMAND_OFFSET 0 // skip 0 bits
273 #define NUBERT_COMMAND_LEN 10 // read 10 bits
274 #define NUBERT_COMPLETE_DATA_LEN 10 // complete length
275 #define NUBERT_STOP_BIT 1 // has stop bit
276 #define NUBERT_LSB 0 // MSB?
277 #define NUBERT_FLAGS 0 // flags
278
279 #define BANG_OLUFSEN_START_BIT1_PULSE_TIME 200.0e-6 // 200 usec pulse
280 #define BANG_OLUFSEN_START_BIT1_PAUSE_TIME 3125.0e-6 // 3125 usec pause
281 #define BANG_OLUFSEN_START_BIT2_PULSE_TIME 200.0e-6 // 200 usec pulse
282 #define BANG_OLUFSEN_START_BIT2_PAUSE_TIME 3125.0e-6 // 3125 usec pause
283 #define BANG_OLUFSEN_START_BIT3_PULSE_TIME 200.0e-6 // 200 usec pulse
284 #define BANG_OLUFSEN_START_BIT3_PAUSE_TIME 15625.0e-6 // 15625 usec pause
285 #define BANG_OLUFSEN_START_BIT4_PULSE_TIME 200.0e-6 // 200 usec pulse
286 #define BANG_OLUFSEN_START_BIT4_PAUSE_TIME 3125.0e-6 // 3125 usec pause
287 #define BANG_OLUFSEN_PULSE_TIME 200.0e-6 // 200 usec pulse
288 #define BANG_OLUFSEN_1_PAUSE_TIME 9375.0e-6 // 9375 usec pause
289 #define BANG_OLUFSEN_0_PAUSE_TIME 3125.0e-6 // 3125 usec pause
290 #define BANG_OLUFSEN_R_PAUSE_TIME 6250.0e-6 // 6250 usec pause (repeat last bit)
291 #define BANG_OLUFSEN_TRAILER_BIT_PAUSE_TIME 12500.0e-6 // 12500 usec pause (trailer bit)
292 #define BANG_OLUFSEN_FRAME_REPEAT_PAUSE_TIME 45.0e-3 // frame repeat after 45ms
293 #define BANG_OLUFSEN_ADDRESS_OFFSET 0 // no address bits
294 #define BANG_OLUFSEN_ADDRESS_LEN 0 // no address bits
295 #define BANG_OLUFSEN_COMMAND_OFFSET 3 // skip startbits 2, 3, 4
296 #define BANG_OLUFSEN_COMMAND_LEN 16 // read 16 command bits
297 #define BANG_OLUFSEN_COMPLETE_DATA_LEN 20 // complete length: startbits 2, 3, 4 + 16 data bits + trailer bit
298 #define BANG_OLUFSEN_STOP_BIT 1 // has stop bit
299 #define BANG_OLUFSEN_LSB 0 // MSB...LSB
300 #define BANG_OLUFSEN_FLAGS 0 // flags
301
302 #define GRUNDIG_NOKIA_IR60_BIT_TIME 528.0e-6 // 528 usec pulse/pause
303 #define GRUNDIG_NOKIA_IR60_PRE_PAUSE_TIME 2639.0e-6 // 2639 usec pause after pre bit
304 #define GRUNDIG_NOKIA_IR60_FRAME_REPEAT_PAUSE_TIME 117.76e-3 // info frame repeat after 117.76 ms
305 #define GRUNDIG_NOKIA_IR60_STOP_BIT 0 // has no stop bit
306 #define GRUNDIG_NOKIA_IR60_LSB 1 // MSB...LSB
307 #define GRUNDIG_NOKIA_IR60_FLAGS (IRMP_PARAM_FLAG_IS_MANCHESTER | IRMP_PARAM_FLAG_1ST_PULSE_IS_1) // flags
308
309 #define GRUNDIG_FRAMES 2 // GRUNDIG sends each frame 1+1 times
310 #define GRUNDIG_AUTO_REPETITION_PAUSE_TIME 20.0e-3 // repetition after 20ms
311 #define GRUNDIG_ADDRESS_OFFSET 0 // no address
312 #define GRUNDIG_ADDRESS_LEN 0 // no address
313 #define GRUNDIG_COMMAND_OFFSET 1 // skip 1 start bit
314 #define GRUNDIG_COMMAND_LEN 9 // read 9 command bits
315 #define GRUNDIG_COMPLETE_DATA_LEN 10 // complete length: 1 start bit + 9 data bits
316
317 #define NOKIA_FRAMES 3 // NOKIA sends each frame 1 + 1 + 1 times
318 #define NOKIA_AUTO_REPETITION_PAUSE_TIME 20.0e-3 // repetition after 20ms
319 #define NOKIA_ADDRESS_OFFSET 9 // skip 9 bits (1 start bit + 8 data bits)
320 #define NOKIA_ADDRESS_LEN 8 // 7 address bits
321 #define NOKIA_COMMAND_OFFSET 1 // skip 1 bit (1 start bit)
322 #define NOKIA_COMMAND_LEN 8 // read 8 command bits
323 #define NOKIA_COMPLETE_DATA_LEN 17 // complete length: 1 start bit + 8 address bits + 8 command bits
324
325 #define IR60_TIMEOUT_TIME 5000.0e-6 // timeout grundig frame, switch to IR60
326 #define IR60_ADDRESS_OFFSET 0 // skip 1 bits
327 #define IR60_ADDRESS_LEN 0 // read 0 address bits
328 #define IR60_COMMAND_OFFSET 0 // skip 1 bit (start bit after pre bit, always 1)
329 #define IR60_COMMAND_LEN 7 // read 6 command bits
330 #define IR60_COMPLETE_DATA_LEN 7 // complete length
331
332 #define SIEMENS_OR_RUWIDO_START_BIT_PULSE_TIME 275.0e-6 // 275 usec pulse
333 #define SIEMENS_OR_RUWIDO_START_BIT_PAUSE_TIME 550.0e-6 // 550 usec pause
334 #define SIEMENS_OR_RUWIDO_BIT_PULSE_TIME 275.0e-6 // 275 usec short pulse
335 #define SIEMENS_OR_RUWIDO_BIT_PULSE_TIME_2 550.0e-6 // 550 usec long pulse
336 #define SIEMENS_OR_RUWIDO_BIT_PAUSE_TIME 275.0e-6 // 275 usec short pause
337 #define SIEMENS_OR_RUWIDO_BIT_PAUSE_TIME_2 550.0e-6 // 550 usec long pause
338 #define SIEMENS_OR_RUWIDO_FRAME_REPEAT_PAUSE_TIME 45.0e-3 // frame repeat after 45ms
339 #define SIEMENS_OR_RUWIDO_STOP_BIT 0 // has no stop bit
340 #define SIEMENS_OR_RUWIDO_LSB 0 // MSB...LSB
341 #define SIEMENS_OR_RUWIDO_FLAGS (IRMP_PARAM_FLAG_IS_MANCHESTER | IRMP_PARAM_FLAG_1ST_PULSE_IS_1) // flags
342
343 #define RUWIDO_ADDRESS_OFFSET 0 // skip 0 bits
344 #define RUWIDO_ADDRESS_LEN 9 // read 9 address bits
345 #define RUWIDO_COMMAND_OFFSET 9 // skip 9 bits
346 #define RUWIDO_COMMAND_LEN 8 // read 7 + 1 command bits, last bit is only check bit
347 #define RUWIDO_COMPLETE_DATA_LEN 17 // complete length
348
349 #define SIEMENS_ADDRESS_OFFSET 0 // skip 0 bits
350 #define SIEMENS_ADDRESS_LEN 11 // read 11 bits
351 #define SIEMENS_COMMAND_OFFSET 11 // skip 11 bits
352 #define SIEMENS_COMMAND_LEN 11 // read 10 + 1 command bits, last bit is only check bit
353 #define SIEMENS_COMPLETE_DATA_LEN 22 // complete length
354
355 #define FDC_START_BIT_PULSE_TIME 2085.0e-6 // 2085 usec pulse
356 #define FDC_START_BIT_PAUSE_TIME 966.0e-6 // 966 usec pause
357 #define FDC_PULSE_TIME 300.0e-6 // 300 usec pulse
358 #define FDC_1_PAUSE_TIME 715.0e-6 // 715 usec pause
359 #define FDC_0_PAUSE_TIME 220.0e-6 // 220 usec pause
360 #define FDC_FRAME_REPEAT_PAUSE_TIME 60.0e-3 // frame repeat after 60ms
361 #define FDC_ADDRESS_OFFSET 0 // skip 0 bits
362 #define FDC_ADDRESS_LEN 14 // read 14 address bits, but use only 6, shift 8 into command
363 #define FDC_COMMAND_OFFSET 20 // skip 20 bits
364 #define FDC_COMMAND_LEN 12 // read 12 bits
365 #define FDC_COMPLETE_DATA_LEN 40 // complete length
366 #define FDC_STOP_BIT 1 // has stop bit
367 #define FDC_LSB 1 // LSB...MSB
368 #define FDC_FLAGS 0 // flags
369
370 #define RCCAR_START_BIT_PULSE_TIME 2000.0e-6 // 2000 usec pulse
371 #define RCCAR_START_BIT_PAUSE_TIME 2000.0e-6 // 2000 usec pause
372 #define RCCAR_PULSE_TIME 600.0e-6 // 360 usec pulse
373 #define RCCAR_1_PAUSE_TIME 450.0e-6 // 650 usec pause
374 #define RCCAR_0_PAUSE_TIME 900.0e-6 // 180 usec pause
375 #define RCCAR_FRAME_REPEAT_PAUSE_TIME 40.0e-3 // frame repeat after 40ms
376 #define RCCAR_ADDRESS_OFFSET 0 // skip 0 bits
377 #define RCCAR_ADDRESS_LEN 0 // read 0 address bits
378 #define RCCAR_COMMAND_OFFSET 0 // skip 0 bits
379 #define RCCAR_COMMAND_LEN 13 // read 13 bits
380 #define RCCAR_COMPLETE_DATA_LEN 13 // complete length
381 #define RCCAR_STOP_BIT 1 // has stop bit
382 #define RCCAR_LSB 1 // LSB...MSB
383 #define RCCAR_FLAGS 0 // flags
384
385 #define JVC_START_BIT_PULSE_TIME 9000.0e-6 // 9000 usec pulse
386 #define JVC_START_BIT_PAUSE_TIME 4500.0e-6 // 4500 usec pause
387 #define JVC_PULSE_TIME 560.0e-6 // 560 usec pulse
388 #define JVC_1_PAUSE_TIME 1690.0e-6 // 1690 usec pause
389 #define JVC_0_PAUSE_TIME 560.0e-6 // 560 usec pause
390 #define JVC_FRAME_REPEAT_PAUSE_TIME 22.0e-3 // frame repeat after 22ms
391 #define JVC_ADDRESS_OFFSET 0 // skip 0 bits
392 #define JVC_ADDRESS_LEN 4 // read 4 address bits
393 #define JVC_COMMAND_OFFSET 4 // skip 4 bits
394 #define JVC_COMMAND_LEN 12 // read 12 bits
395 #define JVC_COMPLETE_DATA_LEN 16 // complete length
396 #define JVC_STOP_BIT 1 // has stop bit
397 #define JVC_LSB 1 // LSB...MSB
398 #define JVC_FLAGS 0 // flags
399
400 #define NIKON_START_BIT_PULSE_TIME 2200.0e-6 // 2200 usec pulse
401 #define NIKON_START_BIT_PAUSE_TIME 27100.0e-6 // 27100 usec pause
402 #define NIKON_PULSE_TIME 500.0e-6 // 500 usec pulse
403 #define NIKON_1_PAUSE_TIME 3500.0e-6 // 3500 usec pause
404 #define NIKON_0_PAUSE_TIME 1500.0e-6 // 1500 usec pause
405 #define NIKON_FRAME_REPEAT_PAUSE_TIME 60.0e-3 // frame repeat after 60ms
406 #define NIKON_ADDRESS_OFFSET 0 // skip 0 bits
407 #define NIKON_ADDRESS_LEN 0 // read 0 address bits
408 #define NIKON_COMMAND_OFFSET 0 // skip 0 bits
409 #define NIKON_COMMAND_LEN 2 // read 2 bits
410 #define NIKON_COMPLETE_DATA_LEN 2 // complete length
411 #define NIKON_STOP_BIT 1 // has stop bit
412 #define NIKON_LSB 0 // LSB...MSB
413 #define NIKON_FLAGS 0 // flags
414
415 #define KATHREIN_START_BIT_PULSE_TIME 210.0e-6 // 1340 usec pulse
416 #define KATHREIN_START_BIT_PAUSE_TIME 6218.0e-6 // 340 usec pause
417 #define KATHREIN_1_PULSE_TIME 210.0e-6 // 1340 usec pulse
418 #define KATHREIN_1_PAUSE_TIME 3000.0e-6 // 340 usec pause
419 #define KATHREIN_0_PULSE_TIME 210.0e-6 // 500 usec pulse
420 #define KATHREIN_0_PAUSE_TIME 1400.0e-6 // 1300 usec pause
421 #define KATHREIN_SYNC_BIT_PAUSE_LEN_TIME 4600.0e-6 // 4600 usec sync (on 6th and/or 8th bit)
422 #define KATHREIN_FRAMES 1 // Kathrein sends 1 frame
423 #define KATHREIN_AUTO_REPETITION_PAUSE_TIME 35.0e-3 // auto repetition after 35ms
424 #define KATHREIN_FRAME_REPEAT_PAUSE_TIME 35.0e-3 // frame repeat after 35ms
425 #define KATHREIN_ADDRESS_OFFSET 1 // skip 1 bits
426 #define KATHREIN_ADDRESS_LEN 4 // read 4 address bits
427 #define KATHREIN_COMMAND_OFFSET 5 // skip 5 bits
428 #define KATHREIN_COMMAND_LEN 7 // read 7 bits
429 #define KATHREIN_COMPLETE_DATA_LEN 13 // complete length
430 #define KATHREIN_STOP_BIT 1 // has stop bit
431 #define KATHREIN_LSB 0 // MSB
432 #define KATHREIN_FLAGS 0 // flags
433
434 #define NETBOX_START_BIT_PULSE_TIME 2400.0e-6 // 2400 usec pulse
435 #define NETBOX_START_BIT_PAUSE_TIME 800.0e-6 // 800 usec pause
436 #define NETBOX_PULSE_TIME 800.0e-6 // 800 usec pulse
437 #define NETBOX_PAUSE_TIME 800.0e-6 // 800 usec pause
438 #define NETBOX_FRAMES 1 // Netbox sends 1 frame
439 #define NETBOX_AUTO_REPETITION_PAUSE_TIME 35.0e-3 // auto repetition after 35ms
440 #define NETBOX_FRAME_REPEAT_PAUSE_TIME 35.0e-3 // frame repeat after 35ms
441 #define NETBOX_ADDRESS_OFFSET 0 // skip 0 bits
442 #define NETBOX_ADDRESS_LEN 3 // read 3 address bits
443 #define NETBOX_COMMAND_OFFSET 3 // skip 3 bits
444 #define NETBOX_COMMAND_LEN 13 // read 13 bits
445 #define NETBOX_COMPLETE_DATA_LEN 16 // complete length
446 #define NETBOX_STOP_BIT 0 // has no stop bit
447 #define NETBOX_LSB 1 // LSB
448 #define NETBOX_FLAGS IRMP_PARAM_FLAG_IS_SERIAL // flags
449
450 #define MERLIN_START_BIT_PULSE_TIME 340.0e-6 // 340 usec pulse
451 #define MERLIN_START_BIT_PAUSE_TIME 300.0e-6 // 300 usec pause
452 #define MERLIN_PULSE_TIME 380.0e-6 // 380 usec pulse
453 #define MERLIN_PAUSE_TIME 310.0e-6 // 310 usec pause
454 #define MERLIN_FRAMES 1 // Merlin sends 1 frame
455 #define MERLIN_AUTO_REPETITION_PAUSE_TIME 35.0e-3 // auto repetition after 35ms
456 #define MERLIN_FRAME_REPEAT_PAUSE_TIME 35.0e-3 // frame repeat after 35ms
457 #define MERLIN_ADDRESS_OFFSET 0 // skip 0 bits
458 #define MERLIN_ADDRESS_LEN 9 // read 16 address bits
459 #define MERLIN_COMMAND_OFFSET 9 // skip 16 bits
460 #define MERLIN_COMMAND_LEN 16 // read 9 bits
461 #define MERLIN_COMPLETE_DATA_LEN 25 // complete length
462 #define MERLIN_STOP_BIT 0 // has no stop bit
463 #define MERLIN_LSB 1 // LSB
464 #define MERLIN_FLAGS IRMP_PARAM_FLAG_IS_SERIAL // flags
465
466 #define LEGO_START_BIT_PULSE_TIME 158.0e-6 // 158 usec pulse ( 6 x 1/38kHz)
467 #define LEGO_START_BIT_PAUSE_TIME 1026.0e-6 // 1026 usec pause (39 x 1/38kHz)
468 #define LEGO_PULSE_TIME 158.0e-6 // 158 usec pulse ( 6 x 1/38kHz)
469 #define LEGO_1_PAUSE_TIME 553.0e-6 // 553 usec pause (21 x 1/38kHz)
470 #define LEGO_0_PAUSE_TIME 263.0e-6 // 263 usec pause (10 x 1/38kHz)
471 #define LEGO_FRAME_REPEAT_PAUSE_TIME 40.0e-3 // frame repeat after 40ms
472 #define LEGO_ADDRESS_OFFSET 0 // skip 0 bits
473 #define LEGO_ADDRESS_LEN 0 // read 0 address bits
474 #define LEGO_COMMAND_OFFSET 0 // skip 0 bits
475 #define LEGO_COMMAND_LEN 16 // read 16 bits (12 command + 4 CRC)
476 #define LEGO_COMPLETE_DATA_LEN 16 // complete length
477 #define LEGO_STOP_BIT 1 // has stop bit
478 #define LEGO_LSB 0 // MSB...LSB
479 #define LEGO_FLAGS 0 // flags
480
481 #define THOMSON_PULSE_TIME 550.0e-6 // 550 usec pulse
482 #define THOMSON_1_PAUSE_TIME 4500.0e-6 // 4500 usec pause
483 #define THOMSON_0_PAUSE_TIME 2000.0e-6 // 2000 usec pause
484 #define THOMSON_FRAMES 1 // THOMSON sends 1 frame
485 #define THOMSON_AUTO_REPETITION_PAUSE_TIME 65.0e-3 // repetition after 65ms
486 #define THOMSON_FRAME_REPEAT_PAUSE_TIME 65.0e-3 // frame repeat after 65ms
487 #define THOMSON_ADDRESS_OFFSET 0 // skip 0 bits
488 #define THOMSON_ADDRESS_LEN 4 // read 4 address bits
489 #define THOMSON_COMMAND_OFFSET 5 // skip 4 address bits + 1 toggle bit
490 #define THOMSON_COMMAND_LEN 7 // read 7 command bits
491 #define THOMSON_COMPLETE_DATA_LEN 12 // complete length
492 #define THOMSON_STOP_BIT 1 // has stop bit
493 #define THOMSON_LSB 0 // MSB...LSB
494 #define THOMSON_FLAGS 0 // flags
495
496 #define IMON_START_BIT_PULSE_TIME 1333.0e-6 // 1333 usec pulse
497 #define IMON_START_BIT_PAUSE_TIME 1172.0e-6 // 1333 usec pause
498 #define IMON_PULSE_TIME 500.0e-6 // 500 usec pulse
499 #define IMON_PAUSE_TIME 500.0e-6 // 500 usec pause
500 #define IMON_FRAMES 1 // Imon sends 1 frame
501 #define IMON_AUTO_REPETITION_PAUSE_TIME 35.0e-3 // auto repetition after 35ms
502 #define IMON_FRAME_REPEAT_PAUSE_TIME 35.0e-3 // frame repeat after 35ms
503 #define IMON_ADDRESS_OFFSET 0 // skip 0 bits
504 #define IMON_ADDRESS_LEN 0 // read 0 address bits
505 #define IMON_COMMAND_OFFSET 26 // skip 26 bits
506 #define IMON_COMMAND_LEN 16 // read last 16 bits, ignore rest
507 #define IMON_COMPLETE_DATA_LEN 42 // complete length, last is stop bit
508 #define IMON_STOP_BIT 1 // has stop bit
509 #define IMON_LSB 1 // LSB
510 #define IMON_FLAGS IRMP_PARAM_FLAG_IS_SERIAL // flags
511
512 #define AUTO_FRAME_REPETITION_TIME 80.0e-3 // SIRCS/SAMSUNG32/NUBERT: automatic repetition after 25-50ms
513 // KASEIKYO: automatic repetition after 75ms
514
515 #define TRUE 1
516 #define FALSE 0
517
518 #define IRMP_FLAG_REPETITION 0x01
519
520 typedef struct
521 {
522 uint8_t protocol; // protocol, i.e. NEC_PROTOCOL
523 uint16_t address; // address
524 uint16_t command; // command
525 uint8_t flags; // flags, e.g. repetition
526 } IRMP_DATA;
527
528 extern void irmp_init (void);
529 extern uint8_t irmp_get_data (IRMP_DATA *);
530 extern uint8_t irmp_is_busy (void);
531 extern uint8_t irmp_ISR (void);
532
533 #if IRMP_PROTOCOL_NAMES == 1
534 extern char * irmp_protocol_names[IRMP_N_PROTOCOLS + 1];
535 #endif
536
537 #if IRMP_USE_CALLBACK == 1
538 extern void irmp_set_callback_ptr (void (*cb)(uint8_t));
539 #endif // IRSND_USE_CALLBACK == 1
540
541 #endif /* _WC_IRMP_H_ */