]> cloudbase.mooo.com Git - irmp.git/blob - irmpprotocols.h
Version 2.4.0:
[irmp.git] / irmpprotocols.h
1 /*---------------------------------------------------------------------------------------------------------------------------------------------------
2 * irmpprotocols.h - irmp protocols
3 *
4 * DO NOT INCLUDE THIS FILE, WILL BE INCLUDED BY IRMP.H or IRSND.H!
5 *
6 * Copyright (c) 2013 Frank Meyer - frank(at)fli4l.de
7 *
8 * $Id: irmpprotocols.h,v 1.17 2014/02/20 14:55:17 fm Exp $
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 _IRMP_PROTOCOLS_H_
18 #define _IRMP_PROTOCOLS_H_
19
20 #if !defined(_IRMP_H_) && !defined(_IRSND_H_)
21 # error please include only irmp.h or irsnd.h, not irmpprotocols.h
22 #endif
23
24 /*---------------------------------------------------------------------------------------------------------------------------------------------------
25 * IR protocols:
26 *---------------------------------------------------------------------------------------------------------------------------------------------------
27 */
28 #define IRMP_SIRCS_PROTOCOL 1 // Sony
29 #define IRMP_NEC_PROTOCOL 2 // NEC, Pioneer, JVC, Toshiba, NoName etc.
30 #define IRMP_SAMSUNG_PROTOCOL 3 // Samsung
31 #define IRMP_MATSUSHITA_PROTOCOL 4 // Matsushita
32 #define IRMP_KASEIKYO_PROTOCOL 5 // Kaseikyo (Panasonic etc)
33 #define IRMP_RECS80_PROTOCOL 6 // Philips, Thomson, Nordmende, Telefunken, Saba
34 #define IRMP_RC5_PROTOCOL 7 // Philips etc
35 #define IRMP_DENON_PROTOCOL 8 // Denon, Sharp
36 #define IRMP_RC6_PROTOCOL 9 // Philips etc
37 #define IRMP_SAMSUNG32_PROTOCOL 10 // Samsung32: no sync pulse at bit 16, length 32 instead of 37
38 #define IRMP_APPLE_PROTOCOL 11 // Apple, very similar to NEC
39 #define IRMP_RECS80EXT_PROTOCOL 12 // Philips, Technisat, Thomson, Nordmende, Telefunken, Saba
40 #define IRMP_NUBERT_PROTOCOL 13 // Nubert
41 #define IRMP_BANG_OLUFSEN_PROTOCOL 14 // Bang & Olufsen
42 #define IRMP_GRUNDIG_PROTOCOL 15 // Grundig
43 #define IRMP_NOKIA_PROTOCOL 16 // Nokia
44 #define IRMP_SIEMENS_PROTOCOL 17 // Siemens, e.g. Gigaset
45 #define IRMP_FDC_PROTOCOL 18 // FDC keyboard
46 #define IRMP_RCCAR_PROTOCOL 19 // RC Car
47 #define IRMP_JVC_PROTOCOL 20 // JVC (NEC with 16 bits)
48 #define IRMP_RC6A_PROTOCOL 21 // RC6A, e.g. Kathrein, XBOX
49 #define IRMP_NIKON_PROTOCOL 22 // Nikon
50 #define IRMP_RUWIDO_PROTOCOL 23 // Ruwido, e.g. T-Home Mediareceiver
51 #define IRMP_IR60_PROTOCOL 24 // IR60 (SDA2008)
52 #define IRMP_KATHREIN_PROTOCOL 25 // Kathrein
53 #define IRMP_NETBOX_PROTOCOL 26 // Netbox keyboard (bitserial)
54 #define IRMP_NEC16_PROTOCOL 27 // NEC with 16 bits (incl. sync)
55 #define IRMP_NEC42_PROTOCOL 28 // NEC with 42 bits
56 #define IRMP_LEGO_PROTOCOL 29 // LEGO Power Functions RC
57 #define IRMP_THOMSON_PROTOCOL 30 // Thomson
58 #define IRMP_BOSE_PROTOCOL 31 // BOSE
59 #define IRMP_A1TVBOX_PROTOCOL 32 // A1 TV Box
60 #define IRMP_ORTEK_PROTOCOL 33 // ORTEK - Hama
61 #define IRMP_TELEFUNKEN_PROTOCOL 34 // Telefunken (1560)
62 #define IRMP_ROOMBA_PROTOCOL 35 // iRobot Roomba vacuum cleaner
63 #define IRMP_RCMM32_PROTOCOL 36 // Fujitsu-Siemens (Activy remote control)
64 #define IRMP_RCMM24_PROTOCOL 37 // Fujitsu-Siemens (Activy keyboard)
65 #define IRMP_RCMM12_PROTOCOL 38 // Fujitsu-Siemens (Activy keyboard)
66
67 #define IRMP_N_PROTOCOLS 38 // number of supported protocols
68
69 /*---------------------------------------------------------------------------------------------------------------------------------------------------
70 * timing constants:
71 *---------------------------------------------------------------------------------------------------------------------------------------------------
72 */
73 // fm 22.09.2011: may not be more than 16000L, otherwise some JVC codes will not be accepted
74 #define IRMP_TIMEOUT_TIME 15500.0e-6 // timeout after 15.5 ms darkness
75 #define IRMP_TIMEOUT_TIME_MS 15500L // timeout after 15.5 ms darkness
76
77 #if IRMP_SUPPORT_NIKON_PROTOCOL == 1
78 # define IRMP_TIMEOUT_NIKON_TIME 29500.0e-6 // 2nd timeout after 29.5 ms darkness (only for NIKON!)
79 # define IRMP_TIMEOUT_NIKON_TIME_MS 29500L // 2nd timeout after 29.5 ms darkness
80 typedef uint16_t PAUSE_LEN;
81 # define IRMP_TIMEOUT_NIKON_LEN (PAUSE_LEN)(F_INTERRUPTS * IRMP_TIMEOUT_NIKON_TIME + 0.5)
82 #else
83 # if (F_INTERRUPTS * IRMP_TIMEOUT_TIME_MS) / 1000000 >= 254
84 typedef uint16_t PAUSE_LEN;
85 # else
86 typedef uint8_t PAUSE_LEN;
87 # endif
88 #endif
89
90 #define IRMP_TIMEOUT_LEN (PAUSE_LEN)(F_INTERRUPTS * IRMP_TIMEOUT_TIME + 0.5)
91
92 /*---------------------------------------------------------------------------------------------------------------------------------------------------
93 * flags of struct IRMP_PARAMETER:
94 *---------------------------------------------------------------------------------------------------------------------------------------------------
95 */
96 #define IRMP_PARAM_FLAG_IS_MANCHESTER 0x01
97 #define IRMP_PARAM_FLAG_1ST_PULSE_IS_1 0x02
98 #define IRMP_PARAM_FLAG_IS_SERIAL 0x04
99
100 /*---------------------------------------------------------------------------------------------------------------------------------------------------
101 * SIRCS:
102 *---------------------------------------------------------------------------------------------------------------------------------------------------
103 */
104 #define SIRCS_START_BIT_PULSE_TIME 2400.0e-6 // 2400 usec pulse
105 #define SIRCS_START_BIT_PAUSE_TIME 600.0e-6 // 600 usec pause
106 #define SIRCS_1_PULSE_TIME 1200.0e-6 // 1200 usec pulse
107 #define SIRCS_0_PULSE_TIME 600.0e-6 // 600 usec pulse
108 #define SIRCS_PAUSE_TIME 600.0e-6 // 600 usec pause
109 #define SIRCS_FRAMES 3 // SIRCS sends each frame 3 times
110 #define SIRCS_AUTO_REPETITION_PAUSE_TIME 25.0e-3 // auto repetition after 25ms
111 #define SIRCS_FRAME_REPEAT_PAUSE_TIME 25.0e-3 // frame repeat after 25ms
112 #define SIRCS_ADDRESS_OFFSET 15 // skip 15 bits
113 #define SIRCS_ADDRESS_LEN 5 // read up to 5 address bits
114 #define SIRCS_COMMAND_OFFSET 0 // skip 0 bits
115 #define SIRCS_COMMAND_LEN 15 // read 12-15 command bits
116 #define SIRCS_MINIMUM_DATA_LEN 12 // minimum data length
117 #define SIRCS_COMPLETE_DATA_LEN 20 // complete length - may be up to 20
118 #define SIRCS_STOP_BIT 0 // has no stop bit
119 #define SIRCS_LSB 1 // LSB...MSB
120 #define SIRCS_FLAGS 0 // flags
121
122 /*---------------------------------------------------------------------------------------------------------------------------------------------------
123 * NEC & NEC42 & NEC16:
124 *---------------------------------------------------------------------------------------------------------------------------------------------------
125 */
126 #define NEC_START_BIT_PULSE_TIME 9000.0e-6 // 9000 usec pulse
127 #define NEC_START_BIT_PAUSE_TIME 4500.0e-6 // 4500 usec pause
128 #define NEC_REPEAT_START_BIT_PAUSE_TIME 2250.0e-6 // 2250 usec pause
129 #define NEC_PULSE_TIME 560.0e-6 // 560 usec pulse
130 #define NEC_1_PAUSE_TIME 1690.0e-6 // 1690 usec pause
131 #define NEC_0_PAUSE_TIME 560.0e-6 // 560 usec pause
132 #define NEC_FRAME_REPEAT_PAUSE_TIME 40.0e-3 // frame repeat after 40ms
133 #define NEC_ADDRESS_OFFSET 0 // skip 0 bits
134 #define NEC_ADDRESS_LEN 16 // read 16 address bits
135 #define NEC_COMMAND_OFFSET 16 // skip 16 bits (8 address + 8 /address)
136 #define NEC_COMMAND_LEN 16 // read 16 bits (8 command + 8 /command)
137 #define NEC_COMPLETE_DATA_LEN 32 // complete length
138 #define NEC_STOP_BIT 1 // has stop bit
139 #define NEC_LSB 1 // LSB...MSB
140 #define NEC_FLAGS 0 // flags
141
142 #define NEC42_ADDRESS_OFFSET 0 // skip 0 bits
143 #define NEC42_ADDRESS_LEN 13 // read 13 address bits
144 #define NEC42_COMMAND_OFFSET 26 // skip 26 bits (2 x 13 address bits)
145 #define NEC42_COMMAND_LEN 8 // read 8 command bits
146 #define NEC42_COMPLETE_DATA_LEN 42 // complete length (2 x 13 + 2 x 8)
147
148 #define NEC16_ADDRESS_OFFSET 0 // skip 0 bits
149 #define NEC16_ADDRESS_LEN 8 // read 8 address bits
150 #define NEC16_COMMAND_OFFSET 8 // skip 8 bits (8 address)
151 #define NEC16_COMMAND_LEN 8 // read 8 bits (8 command)
152 #define NEC16_COMPLETE_DATA_LEN 16 // complete length
153
154 /*---------------------------------------------------------------------------------------------------------------------------------------------------
155 * SAMSUNG & SAMSUNG32:
156 *---------------------------------------------------------------------------------------------------------------------------------------------------
157 */
158 #define SAMSUNG_START_BIT_PULSE_TIME 4500.0e-6 // 4500 usec pulse
159 #define SAMSUNG_START_BIT_PAUSE_TIME 4500.0e-6 // 4500 usec pause
160 #define SAMSUNG_PULSE_TIME 550.0e-6 // 550 usec pulse
161 #define SAMSUNG_1_PAUSE_TIME 1650.0e-6 // 1650 usec pause
162 #define SAMSUNG_0_PAUSE_TIME 550.0e-6 // 550 usec pause
163
164 #define SAMSUNG_FRAME_REPEAT_PAUSE_TIME 25.0e-3 // frame repeat after 25ms
165 #define SAMSUNG_ADDRESS_OFFSET 0 // skip 0 bits
166 #define SAMSUNG_ADDRESS_LEN 16 // read 16 address bits
167 #define SAMSUNG_ID_OFFSET 17 // skip 16 + 1 sync bit
168 #define SAMSUNG_ID_LEN 4 // read 4 id bits
169 #define SAMSUNG_COMMAND_OFFSET 21 // skip 16 + 1 sync + 4 data bits
170 #define SAMSUNG_COMMAND_LEN 16 // read 16 command bits
171 #define SAMSUNG_COMPLETE_DATA_LEN 37 // complete length
172 #define SAMSUNG_STOP_BIT 1 // has stop bit
173 #define SAMSUNG_LSB 1 // LSB...MSB?
174 #define SAMSUNG_FLAGS 0 // flags
175
176 #define SAMSUNG32_COMMAND_OFFSET 16 // skip 16 bits
177 #define SAMSUNG32_COMMAND_LEN 16 // read 16 command bits
178 #define SAMSUNG32_COMPLETE_DATA_LEN 32 // complete length
179 #define SAMSUNG32_FRAMES 1 // SAMSUNG32 sends each frame 1 times
180 #define SAMSUNG32_AUTO_REPETITION_PAUSE_TIME 47.0e-3 // repetition after 47 ms
181 #define SAMSUNG32_FRAME_REPEAT_PAUSE_TIME 47.0e-3 // frame repeat after 47ms
182
183 /*---------------------------------------------------------------------------------------------------------------------------------------------------
184 * MATSUSHITA:
185 *---------------------------------------------------------------------------------------------------------------------------------------------------
186 */
187 #define MATSUSHITA_START_BIT_PULSE_TIME 3488.0e-6 // 3488 usec pulse
188 #define MATSUSHITA_START_BIT_PAUSE_TIME 3488.0e-6 // 3488 usec pause
189 #define MATSUSHITA_PULSE_TIME 872.0e-6 // 872 usec pulse
190 #define MATSUSHITA_1_PAUSE_TIME 2616.0e-6 // 2616 usec pause
191 #define MATSUSHITA_0_PAUSE_TIME 872.0e-6 // 872 usec pause
192 #define MATSUSHITA_FRAME_REPEAT_PAUSE_TIME 40.0e-3 // frame repeat after 40ms
193 #define MATSUSHITA_ADDRESS_OFFSET 12 // skip 12 bits
194 #define MATSUSHITA_ADDRESS_LEN 12 // read 12 address bits
195 #define MATSUSHITA_COMMAND_OFFSET 0 // skip 0 bits
196 #define MATSUSHITA_COMMAND_LEN 12 // read 12 bits (6 custom + 6 command)
197 #define MATSUSHITA_COMPLETE_DATA_LEN 24 // complete length
198 #define MATSUSHITA_STOP_BIT 1 // has stop bit
199 #define MATSUSHITA_LSB 1 // LSB...MSB?
200 #define MATSUSHITA_FLAGS 0 // flags
201
202 /*---------------------------------------------------------------------------------------------------------------------------------------------------
203 * KASEIKYO:
204 *---------------------------------------------------------------------------------------------------------------------------------------------------
205 */
206 #define KASEIKYO_START_BIT_PULSE_TIME 3380.0e-6 // 3380 usec pulse
207 #define KASEIKYO_START_BIT_PAUSE_TIME 1690.0e-6 // 1690 usec pause
208 #define KASEIKYO_PULSE_TIME 423.0e-6 // 525 usec pulse
209 #define KASEIKYO_1_PAUSE_TIME 1269.0e-6 // 525 usec pause
210 #define KASEIKYO_0_PAUSE_TIME 423.0e-6 // 1690 usec pause
211 #define KASEIKYO_AUTO_REPETITION_PAUSE_TIME 74.0e-3 // repetition after 74 ms
212 #define KASEIKYO_FRAME_REPEAT_PAUSE_TIME 74.0e-3 // frame repeat after 74 ms
213 #define KASEIKYO_ADDRESS_OFFSET 0 // skip 0 bits
214 #define KASEIKYO_ADDRESS_LEN 16 // read 16 address bits
215 #define KASEIKYO_COMMAND_OFFSET 28 // skip 28 bits (16 manufacturer & 4 parity & 8 genre)
216 #define KASEIKYO_COMMAND_LEN 12 // read 12 command bits (10 real command & 2 id)
217 #define KASEIKYO_COMPLETE_DATA_LEN 48 // complete length
218 #define KASEIKYO_STOP_BIT 1 // has stop bit
219 #define KASEIKYO_LSB 1 // LSB...MSB?
220 #define KASEIKYO_FRAMES 2 // KASEIKYO sends 1st frame 2 times
221 #define KASEIKYO_FLAGS 0 // flags
222
223 /*---------------------------------------------------------------------------------------------------------------------------------------------------
224 * RECS80:
225 *---------------------------------------------------------------------------------------------------------------------------------------------------
226 */
227 #define RECS80_START_BIT_PULSE_TIME 158.0e-6 // 158 usec pulse
228 #define RECS80_START_BIT_PAUSE_TIME 7432.0e-6 // 7432 usec pause
229 #define RECS80_PULSE_TIME 158.0e-6 // 158 usec pulse
230 #define RECS80_1_PAUSE_TIME 7432.0e-6 // 7432 usec pause
231 #define RECS80_0_PAUSE_TIME 4902.0e-6 // 4902 usec pause
232 #define RECS80_FRAME_REPEAT_PAUSE_TIME 45.0e-3 // frame repeat after 45ms
233 #define RECS80_ADDRESS_OFFSET 1 // skip 1 bit (toggle bit)
234 #define RECS80_ADDRESS_LEN 3 // read 3 address bits
235 #define RECS80_COMMAND_OFFSET 4 // skip 4 bits (1 toggle + 3 address)
236 #define RECS80_COMMAND_LEN 6 // read 6 command bits
237 #define RECS80_COMPLETE_DATA_LEN 10 // complete length
238 #define RECS80_STOP_BIT 1 // has stop bit
239 #define RECS80_LSB 0 // MSB...LSB
240 #define RECS80_FLAGS 0 // flags
241
242 /*---------------------------------------------------------------------------------------------------------------------------------------------------
243 * RC5:
244 *---------------------------------------------------------------------------------------------------------------------------------------------------
245 */
246 #define RC5_BIT_TIME 889.0e-6 // 889 usec pulse/pause
247 #define RC5_FRAME_REPEAT_PAUSE_TIME 45.0e-3 // frame repeat after 45ms
248
249 #define RC5_ADDRESS_OFFSET 1 // skip 1 bit (2nd start)
250 #define RC5_ADDRESS_LEN 6 // read 1 toggle bit (for key repetition detection) + 5 address bits
251 #define RC5_COMMAND_OFFSET 7 // skip 5 bits (2nd start + 1 toggle + 5 address)
252 #define RC5_COMMAND_LEN 6 // read 6 command bits
253 #define RC5_COMPLETE_DATA_LEN 13 // complete length
254 #define RC5_STOP_BIT 0 // has no stop bit
255 #define RC5_LSB 0 // MSB...LSB
256 #define RC5_FLAGS IRMP_PARAM_FLAG_IS_MANCHESTER // flags
257
258 /*---------------------------------------------------------------------------------------------------------------------------------------------------
259 * DENON:
260 *---------------------------------------------------------------------------------------------------------------------------------------------------
261 */
262 #define DENON_PULSE_TIME 310.0e-6 // 310 usec pulse in practice, 275 in theory
263 #define DENON_1_PAUSE_TIME 1780.0e-6 // 1780 usec pause in practice, 1900 in theory
264 #define DENON_0_PAUSE_TIME 745.0e-6 // 745 usec pause in practice, 775 in theory
265 #define DENON_FRAMES 2 // DENON sends each frame 2 times
266 #define DENON_AUTO_REPETITION_PAUSE_TIME 65.0e-3 // inverted repetition after 65ms
267 #define DENON_FRAME_REPEAT_PAUSE_TIME 130.0e-3 // frame repeat after 2 * 65ms
268 #define DENON_ADDRESS_OFFSET 0 // skip 0 bits
269 #define DENON_ADDRESS_LEN 5 // read 5 address bits
270 #define DENON_COMMAND_OFFSET 5 // skip 5
271 #define DENON_COMMAND_LEN 10 // read 10 command bits
272 #define DENON_COMPLETE_DATA_LEN 15 // complete length
273 #define DENON_STOP_BIT 1 // has stop bit
274 #define DENON_LSB 0 // MSB...LSB
275 #define DENON_FLAGS 0 // flags
276
277 /*---------------------------------------------------------------------------------------------------------------------------------------------------
278 * RC6:
279 *---------------------------------------------------------------------------------------------------------------------------------------------------
280 */
281 #define RC6_START_BIT_PULSE_TIME 2666.0e-6 // 2.666 msec pulse
282 #define RC6_START_BIT_PAUSE_TIME 889.0e-6 // 889 usec pause
283 #define RC6_TOGGLE_BIT_TIME 889.0e-6 // 889 msec pulse/pause
284 #define RC6_BIT_TIME 444.0e-6 // 889 usec pulse/pause
285 #define RC6_FRAME_REPEAT_PAUSE_TIME 45.0e-3 // frame repeat after 45ms
286 #define RC6_ADDRESS_OFFSET 5 // skip "1" + 3 mode bits + 1 toggle bit
287 #define RC6_ADDRESS_LEN 8 // read 8 address bits
288 #define RC6_COMMAND_OFFSET 13 // skip 12 bits ("1" + 3 mode + 1 toggle + 8 address)
289 #define RC6_COMMAND_LEN 8 // read 8 command bits
290 #define RC6_COMPLETE_DATA_LEN_SHORT 21 // complete length
291 #define RC6_COMPLETE_DATA_LEN_LONG 36 // complete length
292 #define RC6_STOP_BIT 0 // has no stop bit
293 #define RC6_LSB 0 // MSB...LSB
294 #define RC6_FLAGS (IRMP_PARAM_FLAG_IS_MANCHESTER | IRMP_PARAM_FLAG_1ST_PULSE_IS_1) // flags
295
296 /*---------------------------------------------------------------------------------------------------------------------------------------------------
297 * RECS80EXT:
298 *---------------------------------------------------------------------------------------------------------------------------------------------------
299 */
300 #define RECS80EXT_START_BIT_PULSE_TIME 158.0e-6 // 158 usec pulse
301 #define RECS80EXT_START_BIT_PAUSE_TIME 3637.0e-6 // 3637 usec pause
302 #define RECS80EXT_PULSE_TIME 158.0e-6 // 158 usec pulse
303 #define RECS80EXT_1_PAUSE_TIME 7432.0e-6 // 7432 usec pause
304 #define RECS80EXT_0_PAUSE_TIME 4902.0e-6 // 4902 usec pause
305 #define RECS80EXT_FRAME_REPEAT_PAUSE_TIME 45.0e-3 // frame repeat after 45ms
306 #define RECS80EXT_ADDRESS_OFFSET 2 // skip 2 bits (2nd start + 1 toggle)
307 #define RECS80EXT_ADDRESS_LEN 4 // read 4 address bits
308 #define RECS80EXT_COMMAND_OFFSET 6 // skip 6 bits (2nd start + 1 toggle + 4 address)
309 #define RECS80EXT_COMMAND_LEN 6 // read 6 command bits
310 #define RECS80EXT_COMPLETE_DATA_LEN 12 // complete length
311 #define RECS80EXT_STOP_BIT 1 // has stop bit
312 #define RECS80EXT_LSB 0 // MSB...LSB
313 #define RECS80EXT_FLAGS 0 // flags
314
315 /*---------------------------------------------------------------------------------------------------------------------------------------------------
316 * NUBERT:
317 *---------------------------------------------------------------------------------------------------------------------------------------------------
318 */
319 #define NUBERT_START_BIT_PULSE_TIME 1340.0e-6 // 1340 usec pulse
320 #define NUBERT_START_BIT_PAUSE_TIME 340.0e-6 // 340 usec pause
321 #define NUBERT_1_PULSE_TIME 1340.0e-6 // 1340 usec pulse
322 #define NUBERT_1_PAUSE_TIME 340.0e-6 // 340 usec pause
323 #define NUBERT_0_PULSE_TIME 500.0e-6 // 500 usec pulse
324 #define NUBERT_0_PAUSE_TIME 1300.0e-6 // 1300 usec pause
325 #define NUBERT_FRAMES 2 // Nubert sends 2 frames
326 #define NUBERT_AUTO_REPETITION_PAUSE_TIME 35.0e-3 // auto repetition after 35ms
327 #define NUBERT_FRAME_REPEAT_PAUSE_TIME 35.0e-3 // frame repeat after 45ms
328 #define NUBERT_ADDRESS_OFFSET 0 // skip 0 bits
329 #define NUBERT_ADDRESS_LEN 0 // read 0 address bits
330 #define NUBERT_COMMAND_OFFSET 0 // skip 0 bits
331 #define NUBERT_COMMAND_LEN 10 // read 10 bits
332 #define NUBERT_COMPLETE_DATA_LEN 10 // complete length
333 #define NUBERT_STOP_BIT 1 // has stop bit
334 #define NUBERT_LSB 0 // MSB?
335 #define NUBERT_FLAGS 0 // flags
336
337 /*---------------------------------------------------------------------------------------------------------------------------------------------------
338 * BANG_OLUFSEN:
339 *---------------------------------------------------------------------------------------------------------------------------------------------------
340 */
341 #define BANG_OLUFSEN_START_BIT1_PULSE_TIME 200.0e-6 // 200 usec pulse
342 #define BANG_OLUFSEN_START_BIT1_PAUSE_TIME 3125.0e-6 // 3125 usec pause
343 #define BANG_OLUFSEN_START_BIT2_PULSE_TIME 200.0e-6 // 200 usec pulse
344 #define BANG_OLUFSEN_START_BIT2_PAUSE_TIME 3125.0e-6 // 3125 usec pause
345 #define BANG_OLUFSEN_START_BIT3_PULSE_TIME 200.0e-6 // 200 usec pulse
346 #define BANG_OLUFSEN_START_BIT3_PAUSE_TIME 15625.0e-6 // 15625 usec pause
347 #define BANG_OLUFSEN_START_BIT4_PULSE_TIME 200.0e-6 // 200 usec pulse
348 #define BANG_OLUFSEN_START_BIT4_PAUSE_TIME 3125.0e-6 // 3125 usec pause
349 #define BANG_OLUFSEN_PULSE_TIME 200.0e-6 // 200 usec pulse
350 #define BANG_OLUFSEN_1_PAUSE_TIME 9375.0e-6 // 9375 usec pause
351 #define BANG_OLUFSEN_0_PAUSE_TIME 3125.0e-6 // 3125 usec pause
352 #define BANG_OLUFSEN_R_PAUSE_TIME 6250.0e-6 // 6250 usec pause (repeat last bit)
353 #define BANG_OLUFSEN_TRAILER_BIT_PAUSE_TIME 12500.0e-6 // 12500 usec pause (trailer bit)
354 #define BANG_OLUFSEN_FRAME_REPEAT_PAUSE_TIME 45.0e-3 // frame repeat after 45ms
355 #define BANG_OLUFSEN_ADDRESS_OFFSET 0 // no address bits
356 #define BANG_OLUFSEN_ADDRESS_LEN 0 // no address bits
357 #define BANG_OLUFSEN_COMMAND_OFFSET 3 // skip startbits 2, 3, 4
358 #define BANG_OLUFSEN_COMMAND_LEN 16 // read 16 command bits
359 #define BANG_OLUFSEN_COMPLETE_DATA_LEN 20 // complete length: startbits 2, 3, 4 + 16 data bits + trailer bit
360 #define BANG_OLUFSEN_STOP_BIT 1 // has stop bit
361 #define BANG_OLUFSEN_LSB 0 // MSB...LSB
362 #define BANG_OLUFSEN_FLAGS 0 // flags
363
364 /*---------------------------------------------------------------------------------------------------------------------------------------------------
365 * GRUNDIG & NOKIA
366 *---------------------------------------------------------------------------------------------------------------------------------------------------
367 */
368 #define GRUNDIG_NOKIA_IR60_BIT_TIME 528.0e-6 // 528 usec pulse/pause
369 #define GRUNDIG_NOKIA_IR60_PRE_PAUSE_TIME 2639.0e-6 // 2639 usec pause after pre bit
370 #define GRUNDIG_NOKIA_IR60_FRAME_REPEAT_PAUSE_TIME 117.76e-3 // info frame repeat after 117.76 ms
371 #define GRUNDIG_NOKIA_IR60_STOP_BIT 0 // has no stop bit
372 #define GRUNDIG_NOKIA_IR60_LSB 1 // MSB...LSB
373 #define GRUNDIG_NOKIA_IR60_FLAGS (IRMP_PARAM_FLAG_IS_MANCHESTER | IRMP_PARAM_FLAG_1ST_PULSE_IS_1) // flags
374
375 #define GRUNDIG_FRAMES 2 // GRUNDIG sends each frame 1+1 times
376 #define GRUNDIG_AUTO_REPETITION_PAUSE_TIME 20.0e-3 // repetition after 20ms
377 #define GRUNDIG_ADDRESS_OFFSET 0 // no address
378 #define GRUNDIG_ADDRESS_LEN 0 // no address
379 #define GRUNDIG_COMMAND_OFFSET 1 // skip 1 start bit
380 #define GRUNDIG_COMMAND_LEN 9 // read 9 command bits
381 #define GRUNDIG_COMPLETE_DATA_LEN 10 // complete length: 1 start bit + 9 data bits
382
383 #define NOKIA_FRAMES 3 // NOKIA sends each frame 1 + 1 + 1 times
384 #define NOKIA_AUTO_REPETITION_PAUSE_TIME 20.0e-3 // repetition after 20ms
385 #define NOKIA_ADDRESS_OFFSET 9 // skip 9 bits (1 start bit + 8 data bits)
386 #define NOKIA_ADDRESS_LEN 8 // 7 address bits
387 #define NOKIA_COMMAND_OFFSET 1 // skip 1 bit (1 start bit)
388 #define NOKIA_COMMAND_LEN 8 // read 8 command bits
389 #define NOKIA_COMPLETE_DATA_LEN 17 // complete length: 1 start bit + 8 address bits + 8 command bits
390
391 /*---------------------------------------------------------------------------------------------------------------------------------------------------
392 * IR60:
393 *---------------------------------------------------------------------------------------------------------------------------------------------------
394 */
395 #define IR60_FRAMES 2 // IR60 sends each frame 1+1 times
396 #define IR60_AUTO_REPETITION_PAUSE_TIME 22.2e-3 // repetition after 22.2ms
397 #define IR60_TIMEOUT_TIME 5000.0e-6 // timeout grundig frame, switch to IR60
398 #define IR60_ADDRESS_OFFSET 0 // skip 1 bits
399 #define IR60_ADDRESS_LEN 0 // read 0 address bits
400 #define IR60_COMMAND_OFFSET 0 // skip 1 bit (start bit after pre bit, always 1)
401 #define IR60_COMMAND_LEN 7 // read 6 command bits
402 #define IR60_COMPLETE_DATA_LEN 7 // complete length
403
404 /*---------------------------------------------------------------------------------------------------------------------------------------------------
405 * SIEMENS & RUWIDO:
406 *---------------------------------------------------------------------------------------------------------------------------------------------------
407 */
408 #define SIEMENS_OR_RUWIDO_START_BIT_PULSE_TIME 275.0e-6 // 275 usec pulse
409 #define SIEMENS_OR_RUWIDO_START_BIT_PAUSE_TIME 550.0e-6 // 550 usec pause
410 #define SIEMENS_OR_RUWIDO_BIT_PULSE_TIME 275.0e-6 // 275 usec short pulse
411 #define SIEMENS_OR_RUWIDO_BIT_PULSE_TIME_2 550.0e-6 // 550 usec long pulse
412 #define SIEMENS_OR_RUWIDO_BIT_PAUSE_TIME 275.0e-6 // 275 usec short pause
413 #define SIEMENS_OR_RUWIDO_BIT_PAUSE_TIME_2 550.0e-6 // 550 usec long pause
414 #define SIEMENS_OR_RUWIDO_FRAME_REPEAT_PAUSE_TIME 45.0e-3 // frame repeat after 45ms
415 #define SIEMENS_OR_RUWIDO_STOP_BIT 0 // has no stop bit
416 #define SIEMENS_OR_RUWIDO_LSB 0 // MSB...LSB
417 #define SIEMENS_OR_RUWIDO_FLAGS (IRMP_PARAM_FLAG_IS_MANCHESTER | IRMP_PARAM_FLAG_1ST_PULSE_IS_1) // flags
418
419 #define RUWIDO_ADDRESS_OFFSET 0 // skip 0 bits
420 #define RUWIDO_ADDRESS_LEN 9 // read 9 address bits
421 #define RUWIDO_COMMAND_OFFSET 9 // skip 9 bits
422 #define RUWIDO_COMMAND_LEN 8 // read 7 + 1 command bits, last bit is only check bit
423 #define RUWIDO_COMPLETE_DATA_LEN 17 // complete length
424
425 #define SIEMENS_ADDRESS_OFFSET 0 // skip 0 bits
426 #define SIEMENS_ADDRESS_LEN 11 // read 11 bits
427 #define SIEMENS_COMMAND_OFFSET 11 // skip 11 bits
428 #define SIEMENS_COMMAND_LEN 11 // read 10 + 1 command bits, last bit is only check bit
429 #define SIEMENS_COMPLETE_DATA_LEN 22 // complete length
430
431 /*---------------------------------------------------------------------------------------------------------------------------------------------------
432 * FDC:
433 *---------------------------------------------------------------------------------------------------------------------------------------------------
434 */
435 #define FDC_START_BIT_PULSE_TIME 2085.0e-6 // 2085 usec pulse
436 #define FDC_START_BIT_PAUSE_TIME 966.0e-6 // 966 usec pause
437 #define FDC_PULSE_TIME 300.0e-6 // 300 usec pulse
438 #define FDC_1_PAUSE_TIME 715.0e-6 // 715 usec pause
439 #define FDC_0_PAUSE_TIME 220.0e-6 // 220 usec pause
440 #define FDC_FRAME_REPEAT_PAUSE_TIME 60.0e-3 // frame repeat after 60ms
441 #define FDC_ADDRESS_OFFSET 0 // skip 0 bits
442 #define FDC_ADDRESS_LEN 14 // read 14 address bits, but use only 6, shift 8 into command
443 #define FDC_COMMAND_OFFSET 20 // skip 20 bits
444 #define FDC_COMMAND_LEN 12 // read 12 bits
445 #define FDC_COMPLETE_DATA_LEN 40 // complete length
446 #define FDC_STOP_BIT 1 // has stop bit
447 #define FDC_LSB 1 // LSB...MSB
448 #define FDC_FLAGS 0 // flags
449
450 /*---------------------------------------------------------------------------------------------------------------------------------------------------
451 * RCCAR:
452 *---------------------------------------------------------------------------------------------------------------------------------------------------
453 */
454 #define RCCAR_START_BIT_PULSE_TIME 2000.0e-6 // 2000 usec pulse
455 #define RCCAR_START_BIT_PAUSE_TIME 2000.0e-6 // 2000 usec pause
456 #define RCCAR_PULSE_TIME 600.0e-6 // 360 usec pulse
457 #define RCCAR_1_PAUSE_TIME 450.0e-6 // 650 usec pause
458 #define RCCAR_0_PAUSE_TIME 900.0e-6 // 180 usec pause
459 #define RCCAR_FRAME_REPEAT_PAUSE_TIME 40.0e-3 // frame repeat after 40ms
460 #define RCCAR_ADDRESS_OFFSET 0 // skip 0 bits
461 #define RCCAR_ADDRESS_LEN 0 // read 0 address bits
462 #define RCCAR_COMMAND_OFFSET 0 // skip 0 bits
463 #define RCCAR_COMMAND_LEN 13 // read 13 bits
464 #define RCCAR_COMPLETE_DATA_LEN 13 // complete length
465 #define RCCAR_STOP_BIT 1 // has stop bit
466 #define RCCAR_LSB 1 // LSB...MSB
467 #define RCCAR_FLAGS 0 // flags
468
469 /*---------------------------------------------------------------------------------------------------------------------------------------------------
470 * JVC:
471 *---------------------------------------------------------------------------------------------------------------------------------------------------
472 */
473 #define JVC_START_BIT_PULSE_TIME 9000.0e-6 // 9000 usec pulse
474 #define JVC_START_BIT_PAUSE_TIME 4500.0e-6 // 4500 usec pause
475 #define JVC_PULSE_TIME 560.0e-6 // 560 usec pulse
476 #define JVC_1_PAUSE_TIME 1690.0e-6 // 1690 usec pause
477 #define JVC_0_PAUSE_TIME 560.0e-6 // 560 usec pause
478 #define JVC_FRAME_REPEAT_PAUSE_TIME 22.0e-3 // frame repeat after 22ms
479 #define JVC_ADDRESS_OFFSET 0 // skip 0 bits
480 #define JVC_ADDRESS_LEN 4 // read 4 address bits
481 #define JVC_COMMAND_OFFSET 4 // skip 4 bits
482 #define JVC_COMMAND_LEN 12 // read 12 bits
483 #define JVC_COMPLETE_DATA_LEN 16 // complete length
484 #define JVC_STOP_BIT 1 // has stop bit
485 #define JVC_LSB 1 // LSB...MSB
486 #define JVC_FLAGS 0 // flags
487
488 /*---------------------------------------------------------------------------------------------------------------------------------------------------
489 * NIKON:
490 *---------------------------------------------------------------------------------------------------------------------------------------------------
491 */
492 #define NIKON_START_BIT_PULSE_TIME 2200.0e-6 // 2200 usec pulse
493 #define NIKON_START_BIT_PAUSE_TIME 27100.0e-6 // 27100 usec pause
494 #define NIKON_PULSE_TIME 500.0e-6 // 500 usec pulse
495 #define NIKON_1_PAUSE_TIME 3500.0e-6 // 3500 usec pause
496 #define NIKON_0_PAUSE_TIME 1500.0e-6 // 1500 usec pause
497 #define NIKON_FRAME_REPEAT_PAUSE_TIME 60.0e-3 // frame repeat after 60ms
498 #define NIKON_ADDRESS_OFFSET 0 // skip 0 bits
499 #define NIKON_ADDRESS_LEN 0 // read 0 address bits
500 #define NIKON_COMMAND_OFFSET 0 // skip 0 bits
501 #define NIKON_COMMAND_LEN 2 // read 2 bits
502 #define NIKON_COMPLETE_DATA_LEN 2 // complete length
503 #define NIKON_STOP_BIT 1 // has stop bit
504 #define NIKON_LSB 0 // LSB...MSB
505 #define NIKON_FLAGS 0 // flags
506
507 /*---------------------------------------------------------------------------------------------------------------------------------------------------
508 * KATHREIN:
509 *---------------------------------------------------------------------------------------------------------------------------------------------------
510 */
511 #define KATHREIN_START_BIT_PULSE_TIME 210.0e-6 // 1340 usec pulse
512 #define KATHREIN_START_BIT_PAUSE_TIME 6218.0e-6 // 340 usec pause
513 #define KATHREIN_1_PULSE_TIME 210.0e-6 // 1340 usec pulse
514 #define KATHREIN_1_PAUSE_TIME 3000.0e-6 // 340 usec pause
515 #define KATHREIN_0_PULSE_TIME 210.0e-6 // 500 usec pulse
516 #define KATHREIN_0_PAUSE_TIME 1400.0e-6 // 1300 usec pause
517 #define KATHREIN_SYNC_BIT_PAUSE_LEN_TIME 4600.0e-6 // 4600 usec sync (on 6th and/or 8th bit)
518 #define KATHREIN_FRAMES 1 // Kathrein sends 1 frame
519 #define KATHREIN_AUTO_REPETITION_PAUSE_TIME 35.0e-3 // auto repetition after 35ms
520 #define KATHREIN_FRAME_REPEAT_PAUSE_TIME 35.0e-3 // frame repeat after 35ms
521 #define KATHREIN_ADDRESS_OFFSET 1 // skip 1 bits
522 #define KATHREIN_ADDRESS_LEN 4 // read 4 address bits
523 #define KATHREIN_COMMAND_OFFSET 5 // skip 5 bits
524 #define KATHREIN_COMMAND_LEN 7 // read 7 bits
525 #define KATHREIN_COMPLETE_DATA_LEN 13 // complete length
526 #define KATHREIN_STOP_BIT 1 // has stop bit
527 #define KATHREIN_LSB 0 // MSB
528 #define KATHREIN_FLAGS 0 // flags
529
530 /*---------------------------------------------------------------------------------------------------------------------------------------------------
531 * NETBOX:
532 *---------------------------------------------------------------------------------------------------------------------------------------------------
533 */
534 #define NETBOX_START_BIT_PULSE_TIME 2400.0e-6 // 2400 usec pulse
535 #define NETBOX_START_BIT_PAUSE_TIME 800.0e-6 // 800 usec pause
536 #define NETBOX_PULSE_TIME 800.0e-6 // 800 usec pulse
537 #define NETBOX_PAUSE_TIME 800.0e-6 // 800 usec pause
538 #define NETBOX_FRAMES 1 // Netbox sends 1 frame
539 #define NETBOX_AUTO_REPETITION_PAUSE_TIME 35.0e-3 // auto repetition after 35ms
540 #define NETBOX_FRAME_REPEAT_PAUSE_TIME 35.0e-3 // frame repeat after 35ms
541 #define NETBOX_ADDRESS_OFFSET 0 // skip 0 bits
542 #define NETBOX_ADDRESS_LEN 3 // read 3 address bits
543 #define NETBOX_COMMAND_OFFSET 3 // skip 3 bits
544 #define NETBOX_COMMAND_LEN 13 // read 13 bits
545 #define NETBOX_COMPLETE_DATA_LEN 16 // complete length
546 #define NETBOX_STOP_BIT 0 // has no stop bit
547 #define NETBOX_LSB 1 // LSB
548 #define NETBOX_FLAGS IRMP_PARAM_FLAG_IS_SERIAL // flags
549
550 /*---------------------------------------------------------------------------------------------------------------------------------------------------
551 * LEGO:
552 *---------------------------------------------------------------------------------------------------------------------------------------------------
553 */
554 #define LEGO_START_BIT_PULSE_TIME 158.0e-6 // 158 usec pulse ( 6 x 1/38kHz)
555 #define LEGO_START_BIT_PAUSE_TIME 1026.0e-6 // 1026 usec pause (39 x 1/38kHz)
556 #define LEGO_PULSE_TIME 158.0e-6 // 158 usec pulse ( 6 x 1/38kHz)
557 #define LEGO_1_PAUSE_TIME 553.0e-6 // 553 usec pause (21 x 1/38kHz)
558 #define LEGO_0_PAUSE_TIME 263.0e-6 // 263 usec pause (10 x 1/38kHz)
559 #define LEGO_FRAME_REPEAT_PAUSE_TIME 40.0e-3 // frame repeat after 40ms
560 #define LEGO_ADDRESS_OFFSET 0 // skip 0 bits
561 #define LEGO_ADDRESS_LEN 0 // read 0 address bits
562 #define LEGO_COMMAND_OFFSET 0 // skip 0 bits
563 #define LEGO_COMMAND_LEN 16 // read 16 bits (12 command + 4 CRC)
564 #define LEGO_COMPLETE_DATA_LEN 16 // complete length
565 #define LEGO_STOP_BIT 1 // has stop bit
566 #define LEGO_LSB 0 // MSB...LSB
567 #define LEGO_FLAGS 0 // flags
568
569 /*---------------------------------------------------------------------------------------------------------------------------------------------------
570 * THOMSON:
571 *---------------------------------------------------------------------------------------------------------------------------------------------------
572 */
573 #define THOMSON_PULSE_TIME 550.0e-6 // 550 usec pulse
574 #define THOMSON_1_PAUSE_TIME 4500.0e-6 // 4500 usec pause
575 #define THOMSON_0_PAUSE_TIME 2000.0e-6 // 2000 usec pause
576 #define THOMSON_FRAMES 1 // THOMSON sends 1 frame
577 #define THOMSON_AUTO_REPETITION_PAUSE_TIME 35.0e-3 // repetition after 35ms
578 #define THOMSON_FRAME_REPEAT_PAUSE_TIME 35.0e-3 // frame repeat after 35ms
579 #define THOMSON_ADDRESS_OFFSET 0 // skip 0 bits
580 #define THOMSON_ADDRESS_LEN 4 // read 4 address bits
581 #define THOMSON_COMMAND_OFFSET 5 // skip 4 address bits + 1 toggle bit
582 #define THOMSON_COMMAND_LEN 7 // read 7 command bits
583 #define THOMSON_COMPLETE_DATA_LEN 12 // complete length
584 #define THOMSON_STOP_BIT 1 // has stop bit
585 #define THOMSON_LSB 0 // MSB...LSB
586 #define THOMSON_FLAGS 0 // flags
587
588 /*---------------------------------------------------------------------------------------------------------------------------------------------------
589 * BOSE:
590 *---------------------------------------------------------------------------------------------------------------------------------------------------
591 */
592 #define BOSE_START_BIT_PULSE_TIME 1060.0e-6 // 1060 usec pulse
593 #define BOSE_START_BIT_PAUSE_TIME 1425.0e-6 // 1425 usec pause
594 #define BOSE_PULSE_TIME 550.0e-6 // 550 usec pulse
595 #define BOSE_1_PAUSE_TIME 1425.0e-6 // 1425 usec pause
596 #define BOSE_0_PAUSE_TIME 437.0e-6 // 437 usec pause
597 #define BOSE_FRAME_REPEAT_PAUSE_TIME 40.0e-3 // frame repeat after 40ms???
598 #define BOSE_ADDRESS_OFFSET 0 // skip 0 bits
599 #define BOSE_ADDRESS_LEN 0 // read 16 address bits
600 #define BOSE_COMMAND_OFFSET 0 // skip 16 bits (8 address + 8 /address)
601 #define BOSE_COMMAND_LEN 16 // read 16 bits (8 command + 8 /command)
602 #define BOSE_COMPLETE_DATA_LEN 16 // complete length
603 #define BOSE_STOP_BIT 1 // has stop bit
604 #define BOSE_LSB 1 // LSB...MSB
605 #define BOSE_FLAGS 0 // flags
606
607 /*---------------------------------------------------------------------------------------------------------------------------------------------------
608 * A1TVBOX:
609 * In reality A1 TV Box has no start bit with 300/340 usec. There are 2 start bits "10" with 250us pulse + 150us pause + 150us pause + 250us pulse
610 * This is not very easy to detect, because 1st and 2nd pause of both start bits are closely spaced.
611 * So IRMP looks for pseudo start bit with 300/340 usec and ignores the second half of the 2nd bit (250us pulse)
612 * This method only works because the first data bit (which is the 3rd bit) following is always "1":
613 * IRMP treats the first "long" pulse (250us of 2nd start bit + 250us of 1st data bit) of this "1" as a first _short_ pulse.
614 * This is a bug in IRMP's manchester decoder, but a good feature here ;-)
615 *---------------------------------------------------------------------------------------------------------------------------------------------------
616 */
617 #define A1TVBOX_START_BIT_PULSE_TIME 300.0e-6 // 300 usec pulse
618 #define A1TVBOX_START_BIT_PAUSE_TIME 340.0e-6 // 340 usec pause
619 #define A1TVBOX_BIT_PULSE_TIME 250.0e-6 // 250 usec pulse
620 #define A1TVBOX_BIT_PAUSE_TIME 150.0e-6 // 150 usec pulse
621 #define A1TVBOX_STOP_BIT 0 // has no stop bit
622 #define A1TVBOX_LSB 0 // MSB...LSB
623 #define A1TVBOX_FLAGS (IRMP_PARAM_FLAG_IS_MANCHESTER | IRMP_PARAM_FLAG_1ST_PULSE_IS_1 ) // flags
624 #define A1TVBOX_FRAMES 1 // A1TVBOX sends each frame 1 times
625 #define A1TVBOX_ADDRESS_OFFSET 1 // skip 1 bits
626 #define A1TVBOX_ADDRESS_LEN 8 // read 8 address bits
627 #define A1TVBOX_COMMAND_OFFSET 9 // skip 9 bits (start bit + address)
628 #define A1TVBOX_COMMAND_LEN 8 // read 8 command bits
629 #define A1TVBOX_COMPLETE_DATA_LEN 17 // complete length incl. start bit
630 #define A1TVBOX_FRAME_REPEAT_PAUSE_TIME 50.0e-3 // 50 msec pause between frames, don't know if it is correct
631
632 /*---------------------------------------------------------------------------------------------------------------------------------------------------
633 * ORTEK (Hama): 6 address bits + 2 frame type bits + 6 command bits + 1 parity bit + 1 unknown bit + "1" + "0"
634 *---------------------------------------------------------------------------------------------------------------------------------------------------
635 */
636 #define ORTEK_START_BIT_PULSE_TIME 2000.0e-6 // 2000 usec pulse
637 #define ORTEK_START_BIT_PAUSE_TIME 1000.0e-6 // 1000 usec pause
638 #define ORTEK_BIT_TIME 500.0e-6 // 500 usec pulse/pause
639 #define ORTEK_FRAME_REPEAT_PAUSE_TIME 45.0e-3 // frame repeat after 45ms
640 #define ORTEK_ADDRESS_OFFSET 0 // skip 0 bits
641 #define ORTEK_ADDRESS_LEN 8 // read 6 address bits + 2 special bits
642 #define ORTEK_COMMAND_OFFSET 8 // skip 6 address bits + 2 special bits
643 #define ORTEK_COMMAND_LEN 6 // read 6 command bits
644 #define ORTEK_COMPLETE_DATA_LEN 18 // complete length
645 #define ORTEK_STOP_BIT 0 // has no stop bit
646 #define ORTEK_LSB 0 // MSB...LSB
647 #define ORTEK_FLAGS (IRMP_PARAM_FLAG_IS_MANCHESTER | IRMP_PARAM_FLAG_1ST_PULSE_IS_1) // flags
648
649 /*---------------------------------------------------------------------------------------------------------------------------------------------------
650 * TELEFUNKEN:
651 *---------------------------------------------------------------------------------------------------------------------------------------------------
652 */
653 #define TELEFUNKEN_START_BIT_PULSE_TIME 600.0e-6 // 600 usec pulse
654 #define TELEFUNKEN_START_BIT_PAUSE_TIME 1500.0e-6 // 1500 usec pause
655 #define TELEFUNKEN_PULSE_TIME 600.0e-6 // 600 usec pulse
656 #define TELEFUNKEN_1_PAUSE_TIME 1500.0e-6 // 1500 usec pause
657 #define TELEFUNKEN_0_PAUSE_TIME 600.0e-6 // 600 usec pause
658 #define TELEFUNKEN_FRAME_REPEAT_PAUSE_TIME 22.0e-3 // frame repeat after XX ms ?????
659 #define TELEFUNKEN_ADDRESS_OFFSET 0 // skip 0 bits
660 #define TELEFUNKEN_ADDRESS_LEN 0 // read 0 address bits
661 #define TELEFUNKEN_COMMAND_OFFSET 0 // skip 0 bits
662 #define TELEFUNKEN_COMMAND_LEN 15 // read 15 bits
663 #define TELEFUNKEN_COMPLETE_DATA_LEN 15 // complete length
664 #define TELEFUNKEN_STOP_BIT 1 // has stop bit
665 #define TELEFUNKEN_LSB 0 // LSB...MSB
666 #define TELEFUNKEN_FLAGS 0 // flags
667
668 /*---------------------------------------------------------------------------------------------------------------------------------------------------
669 * ROOMBA
670 *---------------------------------------------------------------------------------------------------------------------------------------------------
671 */
672 #define ROOMBA_START_BIT_PULSE_TIME 2790.0e-6 // 2790 usec pulse
673 #define ROOMBA_START_BIT_PAUSE_TIME 930.0e-6 // 930 usec pause
674 #define ROOMBA_0_PULSE_TIME 930.0e-6 // 930 usec pulse
675 #define ROOMBA_1_PULSE_TIME 2790.0e-6 // 2790 usec pulse
676 #define ROOMBA_0_PAUSE_TIME 2790.0e-6 // 2790 usec pause
677 #define ROOMBA_1_PAUSE_TIME 930.0e-6 // 930 usec pause
678 #define ROOMBA_FRAME_REPEAT_PAUSE_TIME 18.0e-3 // frame repeat after 18ms
679 #define ROOMBA_ADDRESS_OFFSET 0 // skip 0 bits
680 #define ROOMBA_ADDRESS_LEN 0 // read 0 address bits
681 #define ROOMBA_COMMAND_OFFSET 0 // skip 0 bits
682 #define ROOMBA_COMMAND_LEN 7 // read 7 bits
683 #define ROOMBA_COMPLETE_DATA_LEN 7 // complete length
684 #define ROOMBA_STOP_BIT 0 // has stop bit
685 #define ROOMBA_LSB 0 // MSB...LSB
686 #define ROOMBA_FLAGS 0 // flags
687 #define ROOMBA_FRAMES 8 // ROOMBA sends 8 frames (this is a lie, but more comfortable)
688
689 /*---------------------------------------------------------------------------------------------------------------------------------------------------
690 * RC-MM (32, 24, or 12 bit)
691 *---------------------------------------------------------------------------------------------------------------------------------------------------
692 */
693 #define RCMM32_START_BIT_PULSE_TIME 500.0e-6 // 500 usec pulse
694 #define RCMM32_START_BIT_PAUSE_TIME 220.0e-6 // 220 usec pause
695 #define RCMM32_PULSE_TIME 230.0e-6 // 230 usec pulse
696 #define RCMM32_00_PAUSE_TIME 220.0e-6 // 220 usec pause
697 #define RCMM32_01_PAUSE_TIME 380.0e-6 // 380 usec pause
698 #define RCMM32_10_PAUSE_TIME 550.0e-6 // 550 usec pause
699 #define RCMM32_11_PAUSE_TIME 720.0e-6 // 720 usec pause
700
701 #define RCMM32_FRAME_REPEAT_PAUSE_TIME 80.0e-3 // frame repeat after 80 ms
702 #define RCMM32_ADDRESS_OFFSET 0 // skip 0 bits
703 #define RCMM32_ADDRESS_LEN 16 // read 16 address bits
704 #define RCMM32_COMMAND_OFFSET 17 // skip 17 bits
705 #define RCMM32_COMMAND_LEN 15 // read 15 bits
706 #define RCMM32_COMPLETE_DATA_LEN 32 // complete length
707 #define RCMM32_STOP_BIT 1 // has stop bit
708 #define RCMM32_LSB 0 // LSB...MSB
709 #define RCMM32_FLAGS 0 // flags
710
711 /*---------------------------------------------------------------------------------------------------------------------------------------------------
712 * Frame Repetitions:
713 *---------------------------------------------------------------------------------------------------------------------------------------------------
714 */
715 #define AUTO_FRAME_REPETITION_TIME 80.0e-3 // SIRCS/SAMSUNG32/NUBERT: automatic repetition after 25-50ms
716
717 #endif // _IRMP_PROTOCOLS_H_