]> cloudbase.mooo.com Git - irmp.git/blob - irmpprotocols.h
Add support for libopencm3 (STM32F1)
[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-2016 Frank Meyer - frank(at)fli4l.de
7 *
8 * $Id: irmpprotocols.h,v 1.48 2017/02/17 09:13:06 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 #define IRMP_SPEAKER_PROTOCOL 39 // Another loudspeaker protocol, similar to Nubert
67 #define IRMP_LGAIR_PROTOCOL 40 // LG air conditioner
68 #define IRMP_SAMSUNG48_PROTOCOL 41 // air conditioner with SAMSUNG protocol (48 bits)
69 #define IRMP_MERLIN_PROTOCOL 42 // Merlin (Pollin 620 185)
70 #define IRMP_PENTAX_PROTOCOL 43 // Pentax camera
71 #define IRMP_FAN_PROTOCOL 44 // FAN (ventilator), very similar to NUBERT, but last bit is data bit instead of stop bit
72 #define IRMP_S100_PROTOCOL 45 // very similar to RC5, but 14 instead of 13 data bits
73 #define IRMP_ACP24_PROTOCOL 46 // Stiebel Eltron ACP24 air conditioner
74 #define IRMP_TECHNICS_PROTOCOL 47 // Technics, similar to Matsushita, but 22 instead of 24 bits
75 #define IRMP_PANASONIC_PROTOCOL 48 // Panasonic (Beamer), start bits similar to KASEIKYO
76 #define IRMP_MITSU_HEAVY_PROTOCOL 49 // Mitsubishi-Heavy Aircondition, similar timing as Panasonic beamer
77 #define IRMP_VINCENT_PROTOCOL 50 // Vincent
78 #define IRMP_SAMSUNGAH_PROTOCOL 51 // Vincent
79
80 #define IRMP_RADIO1_PROTOCOL 52 // Radio protocol (experimental status), do not use it yet!
81
82 #define IRMP_N_PROTOCOLS 53 // number of supported protocols
83
84 /*---------------------------------------------------------------------------------------------------------------------------------------------------
85 * timing constants:
86 *---------------------------------------------------------------------------------------------------------------------------------------------------
87 */
88 // fm 22.09.2011: may not be more than 16000L, otherwise some JVC codes will not be accepted
89 #define IRMP_TIMEOUT_TIME 15500.0e-6 // timeout after 15.5 ms darkness
90 #define IRMP_TIMEOUT_TIME_MS 15500L // timeout after 15.5 ms darkness
91
92 #if IRMP_SUPPORT_NIKON_PROTOCOL == 1
93 # define IRMP_TIMEOUT_NIKON_TIME 29500.0e-6 // 2nd timeout after 29.5 ms darkness (only for NIKON!)
94 # define IRMP_TIMEOUT_NIKON_TIME_MS 29500L // 2nd timeout after 29.5 ms darkness
95 typedef uint16_t PAUSE_LEN;
96 # define IRMP_TIMEOUT_NIKON_LEN (PAUSE_LEN)(F_INTERRUPTS * IRMP_TIMEOUT_NIKON_TIME + 0.5)
97 #else
98 # if (F_INTERRUPTS * IRMP_TIMEOUT_TIME_MS) / 1000000 >= 254
99 typedef uint16_t PAUSE_LEN;
100 # else
101 typedef uint8_t PAUSE_LEN;
102 # endif
103 #endif
104
105 #define IRMP_TIMEOUT_LEN (PAUSE_LEN)(F_INTERRUPTS * IRMP_TIMEOUT_TIME + 0.5)
106
107 /*---------------------------------------------------------------------------------------------------------------------------------------------------
108 * flags of struct IRMP_PARAMETER:
109 *---------------------------------------------------------------------------------------------------------------------------------------------------
110 */
111 #define IRMP_PARAM_FLAG_IS_MANCHESTER 0x01
112 #define IRMP_PARAM_FLAG_1ST_PULSE_IS_1 0x02
113 #define IRMP_PARAM_FLAG_IS_SERIAL 0x04
114
115 /*---------------------------------------------------------------------------------------------------------------------------------------------------
116 * SIRCS:
117 *---------------------------------------------------------------------------------------------------------------------------------------------------
118 */
119 #define SIRCS_START_BIT_PULSE_TIME 2400.0e-6 // 2400 usec pulse
120 #define SIRCS_START_BIT_PAUSE_TIME 600.0e-6 // 600 usec pause
121 #define SIRCS_1_PULSE_TIME 1200.0e-6 // 1200 usec pulse
122 #define SIRCS_0_PULSE_TIME 600.0e-6 // 600 usec pulse
123 #define SIRCS_PAUSE_TIME 600.0e-6 // 600 usec pause
124 #define SIRCS_FRAMES 3 // SIRCS sends each frame 3 times
125 #define SIRCS_AUTO_REPETITION_PAUSE_TIME 25.0e-3 // auto repetition after 25ms
126 #define SIRCS_FRAME_REPEAT_PAUSE_TIME 25.0e-3 // frame repeat after 25ms
127 #define SIRCS_ADDRESS_OFFSET 15 // skip 15 bits
128 #define SIRCS_ADDRESS_LEN 5 // read up to 5 address bits
129 #define SIRCS_COMMAND_OFFSET 0 // skip 0 bits
130 #define SIRCS_COMMAND_LEN 15 // read 12-15 command bits
131 #define SIRCS_MINIMUM_DATA_LEN 12 // minimum data length
132 #define SIRCS_COMPLETE_DATA_LEN 20 // complete length - may be up to 20
133 #define SIRCS_STOP_BIT 0 // has no stop bit
134 #define SIRCS_LSB 1 // LSB...MSB
135 #define SIRCS_FLAGS 0 // flags
136
137 /*---------------------------------------------------------------------------------------------------------------------------------------------------
138 * NEC & NEC42 & NEC16 & LGAIR:
139 *---------------------------------------------------------------------------------------------------------------------------------------------------
140 */
141 #define NEC_START_BIT_PULSE_TIME 9000.0e-6 // 9000 usec pulse
142 #define NEC_START_BIT_PAUSE_TIME 4500.0e-6 // 4500 usec pause
143 #define NEC_REPEAT_START_BIT_PAUSE_TIME 2250.0e-6 // 2250 usec pause
144 #define NEC_PULSE_TIME 560.0e-6 // 560 usec pulse
145 #define NEC_1_PAUSE_TIME 1690.0e-6 // 1690 usec pause
146 #define NEC_0_PAUSE_TIME 560.0e-6 // 560 usec pause
147 #define NEC_FRAME_REPEAT_PAUSE_TIME 40.0e-3 // frame repeat after 40ms
148 #define NEC_ADDRESS_OFFSET 0 // skip 0 bits
149 #define NEC_ADDRESS_LEN 16 // read 16 address bits
150 #define NEC_COMMAND_OFFSET 16 // skip 16 bits (8 address + 8 /address)
151 #define NEC_COMMAND_LEN 16 // read 16 bits (8 command + 8 /command)
152 #define NEC_COMPLETE_DATA_LEN 32 // complete length
153 #define NEC_STOP_BIT 1 // has stop bit
154 #define NEC_LSB 1 // LSB...MSB
155 #define NEC_FLAGS 0 // flags
156
157 #define NEC42_ADDRESS_OFFSET 0 // skip 0 bits
158 #define NEC42_ADDRESS_LEN 13 // read 13 address bits
159 #define NEC42_COMMAND_OFFSET 26 // skip 26 bits (2 x 13 address bits)
160 #define NEC42_COMMAND_LEN 8 // read 8 command bits
161 #define NEC42_COMPLETE_DATA_LEN 42 // complete length (2 x 13 + 2 x 8)
162
163 #define LGAIR_ADDRESS_OFFSET 0 // skip 0 bits
164 #define LGAIR_ADDRESS_LEN 8 // read 8 address bits
165 #define LGAIR_COMMAND_OFFSET 8 // skip 8 bits (8 address)
166 #define LGAIR_COMMAND_LEN 16 // read 16 bits (16 command)
167 #define LGAIR_COMPLETE_DATA_LEN 28 // complete length (8 address + 16 command + 4 checksum)
168
169 #define NEC16_ADDRESS_OFFSET 0 // skip 0 bits
170 #define NEC16_ADDRESS_LEN 8 // read 8 address bits
171 #define NEC16_COMMAND_OFFSET 8 // skip 8 bits (8 address)
172 #define NEC16_COMMAND_LEN 8 // read 8 bits (8 command)
173 #define NEC16_COMPLETE_DATA_LEN 16 // complete length
174
175 /*---------------------------------------------------------------------------------------------------------------------------------------------------
176 * SAMSUNG & SAMSUNG32 & SAMSUNG48:
177 *---------------------------------------------------------------------------------------------------------------------------------------------------
178 */
179 #define SAMSUNG_START_BIT_PULSE_TIME 4500.0e-6 // 4500 usec pulse
180 #define SAMSUNG_START_BIT_PAUSE_TIME 4500.0e-6 // 4500 usec pause
181 #define SAMSUNG_PULSE_TIME 550.0e-6 // 550 usec pulse
182 #define SAMSUNG_1_PAUSE_TIME 1500.0e-6 // 1550 usec pause
183 #define SAMSUNG_0_PAUSE_TIME 500.0e-6 // 500 usec pause
184
185 #define SAMSUNG_FRAME_REPEAT_PAUSE_TIME 25.0e-3 // frame repeat after 25ms
186 #define SAMSUNG_ADDRESS_OFFSET 0 // skip 0 bits
187 #define SAMSUNG_ADDRESS_LEN 16 // read 16 address bits
188 #define SAMSUNG_ID_OFFSET 17 // skip 16 + 1 sync bit
189 #define SAMSUNG_ID_LEN 4 // read 4 id bits
190 #define SAMSUNG_COMMAND_OFFSET 21 // skip 16 + 1 sync + 4 data bits
191 #define SAMSUNG_COMMAND_LEN 16 // read 16 command bits
192 #define SAMSUNG_COMPLETE_DATA_LEN 37 // complete length
193 #define SAMSUNG_STOP_BIT 1 // has stop bit
194 #define SAMSUNG_LSB 1 // LSB...MSB?
195 #define SAMSUNG_FLAGS 0 // flags
196
197 #define SAMSUNG32_COMMAND_OFFSET 16 // skip 16 bits
198 #define SAMSUNG32_COMMAND_LEN 16 // read 16 command bits
199 #define SAMSUNG32_COMPLETE_DATA_LEN 32 // complete length
200 #define SAMSUNG32_FRAMES 1 // SAMSUNG32 sends one frame
201 #define SAMSUNG32_AUTO_REPETITION_PAUSE_TIME 47.0e-3 // repetition after 47 ms
202 #define SAMSUNG32_FRAME_REPEAT_PAUSE_TIME 47.0e-3 // frame repeat after 47ms
203
204 #define SAMSUNG48_COMMAND_OFFSET 16 // skip 16 bits
205 #define SAMSUNG48_COMMAND_LEN 32 // read 32 command bits
206 #define SAMSUNG48_COMPLETE_DATA_LEN 48 // complete length
207 #define SAMSUNG48_FRAMES 2 // SAMSUNG48 sends each frame 2 times
208 #define SAMSUNG48_AUTO_REPETITION_PAUSE_TIME 5.0e-3 // repetition after 5 ms
209 #define SAMSUNG48_FRAME_REPEAT_PAUSE_TIME 47.0e-3 // frame repeat after 47ms
210
211 /*---------------------------------------------------------------------------------------------------------------------------------------------------
212 * SAMSUNGAH:
213 *---------------------------------------------------------------------------------------------------------------------------------------------------
214 */
215 #define SAMSUNGAH_START_BIT_PULSE_TIME 2500.0e-6 // 2500 usec pulse
216 #define SAMSUNGAH_START_BIT_PAUSE_TIME 1900.0e-6 // 1900 usec pause
217 #define SAMSUNGAH_PULSE_TIME 450.0e-6 // 450 usec pulse
218 #define SAMSUNGAH_1_PAUSE_TIME 1100.0e-6 // 1100 usec pause
219 #define SAMSUNGAH_0_PAUSE_TIME 450.0e-6 // 450 usec pause
220 #define SAMSUNGAH_FRAME_REPEAT_PAUSE_TIME 40.0e-3 // frame repeat after 40ms
221 #define SAMSUNGAH_ADDRESS_OFFSET 0 // skip 0 bits
222 #define SAMSUNGAH_ADDRESS_LEN 16 // read 16 address bits, ignore 17..31
223 #define SAMSUNGAH_COMMAND_OFFSET 32 // skip 32 bits
224 #define SAMSUNGAH_COMMAND_LEN 16 // read 32 bits
225 #define SAMSUNGAH_COMPLETE_DATA_LEN 48 // complete length
226 #define SAMSUNGAH_STOP_BIT 1 // has stop bit
227 #define SAMSUNGAH_LSB 1 // LSB...MSB?
228 #define SAMSUNGAH_FLAGS 0 // flags
229
230 /*---------------------------------------------------------------------------------------------------------------------------------------------------
231 * MATSUSHITA:
232 *---------------------------------------------------------------------------------------------------------------------------------------------------
233 */
234 #define MATSUSHITA_START_BIT_PULSE_TIME 3488.0e-6 // 3488 usec pulse
235 #define MATSUSHITA_START_BIT_PAUSE_TIME 3488.0e-6 // 3488 usec pause
236 #define MATSUSHITA_PULSE_TIME 872.0e-6 // 872 usec pulse
237 #define MATSUSHITA_1_PAUSE_TIME 2616.0e-6 // 2616 usec pause
238 #define MATSUSHITA_0_PAUSE_TIME 872.0e-6 // 872 usec pause
239 #define MATSUSHITA_FRAME_REPEAT_PAUSE_TIME 40.0e-3 // frame repeat after 40ms
240 #define MATSUSHITA_ADDRESS_OFFSET 12 // skip 12 bits
241 #define MATSUSHITA_ADDRESS_LEN 12 // read 12 address bits
242 #define MATSUSHITA_COMMAND_OFFSET 0 // skip 0 bits
243 #define MATSUSHITA_COMMAND_LEN 12 // read 12 bits (6 custom + 6 command)
244 #define MATSUSHITA_COMPLETE_DATA_LEN 24 // complete length
245 #define MATSUSHITA_STOP_BIT 1 // has stop bit
246 #define MATSUSHITA_LSB 1 // LSB...MSB?
247 #define MATSUSHITA_FLAGS 0 // flags
248
249 /*---------------------------------------------------------------------------------------------------------------------------------------------------
250 * TECHNICS: same timings as MATSUSHITA
251 *---------------------------------------------------------------------------------------------------------------------------------------------------
252 */
253 #define TECHNICS_ADDRESS_LEN 0 // read 0 address bits
254 #define TECHNICS_COMMAND_LEN 11 // read 11 bits
255 #define TECHNICS_COMPLETE_DATA_LEN 22 // complete length
256
257 /*---------------------------------------------------------------------------------------------------------------------------------------------------
258 * KASEIKYO:
259 *---------------------------------------------------------------------------------------------------------------------------------------------------
260 */
261 #define KASEIKYO_START_BIT_PULSE_TIME 3380.0e-6 // 3380 usec pulse
262 #define KASEIKYO_START_BIT_PAUSE_TIME 1690.0e-6 // 1690 usec pause
263 #define KASEIKYO_PULSE_TIME 423.0e-6 // 525 usec pulse
264 #define KASEIKYO_1_PAUSE_TIME 1269.0e-6 // 525 usec pause
265 #define KASEIKYO_0_PAUSE_TIME 423.0e-6 // 1690 usec pause
266 #define KASEIKYO_AUTO_REPETITION_PAUSE_TIME 74.0e-3 // repetition after 74 ms
267 #define KASEIKYO_FRAME_REPEAT_PAUSE_TIME 74.0e-3 // frame repeat after 74 ms
268 #define KASEIKYO_ADDRESS_OFFSET 0 // skip 0 bits
269 #define KASEIKYO_ADDRESS_LEN 16 // read 16 address bits
270 #define KASEIKYO_COMMAND_OFFSET 28 // skip 28 bits (16 manufacturer & 4 parity & 8 genre)
271 #define KASEIKYO_COMMAND_LEN 12 // read 12 command bits (10 real command & 2 id)
272 #define KASEIKYO_COMPLETE_DATA_LEN 48 // complete length
273 #define KASEIKYO_STOP_BIT 1 // has stop bit
274 #define KASEIKYO_LSB 1 // LSB...MSB?
275 #define KASEIKYO_FRAMES 1 // KASEIKYO sends 1 frame
276 #define KASEIKYO_FLAGS 0 // flags
277
278 /*---------------------------------------------------------------------------------------------------------------------------------------------------
279 * PANASONIC (Beamer), start bit timings similar to KASEIKYO
280 *---------------------------------------------------------------------------------------------------------------------------------------------------
281 */
282 #define PANASONIC_START_BIT_PULSE_TIME 3600.0e-6 // 3600 usec pulse
283 #define PANASONIC_START_BIT_PAUSE_TIME 1600.0e-6 // 1690 usec pause
284 #define PANASONIC_PULSE_TIME 565.0e-6 // 565 usec pulse
285 #define PANASONIC_1_PAUSE_TIME 1140.0e-6 // 1140 usec pause
286 #define PANASONIC_0_PAUSE_TIME 316.0e-6 // 316 usec pause
287 #define PANASONIC_AUTO_REPETITION_PAUSE_TIME 40.0e-3 // repetition after 40 ms?
288 #define PANASONIC_FRAME_REPEAT_PAUSE_TIME 40.0e-3 // frame repeat after 40 ms
289 #define PANASONIC_ADDRESS_OFFSET 24 // skip 24 bits: 010000000000010000000001
290 #define PANASONIC_ADDRESS_LEN 16 // read 16 address bits
291 #define PANASONIC_COMMAND_OFFSET 40 // skip 40 bits
292 #define PANASONIC_COMMAND_LEN 16 // read 16 command bits
293 #define PANASONIC_COMPLETE_DATA_LEN 56 // complete length
294 #define PANASONIC_STOP_BIT 1 // has stop bit
295 #define PANASONIC_LSB 1 // LSB...MSB?
296 #define PANASONIC_FRAMES 1 // PANASONIC sends 1 frame
297 #define PANASONIC_FLAGS 0 // flags
298
299 /*---------------------------------------------------------------------------------------------------------------------------------------------------
300 * MITSUBISHI-Heavy Aircondition, timings similar to PANASONIC beamer
301 *---------------------------------------------------------------------------------------------------------------------------------------------------
302 */
303 #define MITSU_HEAVY_START_BIT_PULSE_TIME 3200.0e-6 // 3600 usec pulse
304 #define MITSU_HEAVY_START_BIT_PAUSE_TIME 1560.0e-6 // 1690 usec pause
305 #define MITSU_HEAVY_PULSE_TIME 400.0e-6 // 565 usec pulse
306 #define MITSU_HEAVY_1_PAUSE_TIME 1200.0e-6 // 1140 usec pause
307 #define MITSU_HEAVY_0_PAUSE_TIME 430.0e-6 // 316 usec pause
308 #define MITSU_HEAVY_FRAME_REPEAT_PAUSE_TIME 40.0e-3 // frame repeat after 40 ms
309 #define MITSU_HEAVY_ADDRESS_OFFSET 40 // skip 24 bits: 010000000000010000000001
310 #define MITSU_HEAVY_ADDRESS_LEN 16 // read 16 address bits
311 #define MITSU_HEAVY_COMMAND_OFFSET 56 // skip 40 bits
312 #define MITSU_HEAVY_COMMAND_LEN 16 // read 16 command bits
313 #define MITSU_HEAVY_COMPLETE_DATA_LEN 88 // complete length
314 #define MITSU_HEAVY_STOP_BIT 1 // has stop bit
315 #define MITSU_HEAVY_LSB 0 // LSB...MSB?
316 #define MITSU_HEAVY_FRAMES 1 // PANASONIC sends 1 frame
317 #define MITSU_HEAVY_FLAGS 0 // flags
318
319 /*---------------------------------------------------------------------------------------------------------------------------------------------------
320 * VINCENT
321 *---------------------------------------------------------------------------------------------------------------------------------------------------
322 */
323 #define VINCENT_START_BIT_PULSE_TIME 2500.0e-6 // 2500 usec pulse
324 #define VINCENT_START_BIT_PAUSE_TIME 4600.0e-6 // 4600 usec pause
325 #define VINCENT_PULSE_TIME 550.0e-6 // 550 usec pulse
326 #define VINCENT_1_PAUSE_TIME 1540.0e-6 // 1540 usec pause
327 #define VINCENT_0_PAUSE_TIME 550.0e-6 // 550 usec pause
328 #define VINCENT_FRAME_REPEAT_PAUSE_TIME 40.0e-3 // frame repeat after 40 ms ?
329 #define VINCENT_ADDRESS_OFFSET 0 // skip 0 bits
330 #define VINCENT_ADDRESS_LEN 16 // read 16 address bits
331 #define VINCENT_COMMAND_OFFSET 16 // skip 16 bits
332 #define VINCENT_COMMAND_LEN 16 // read 16 command bits
333 #define VINCENT_COMPLETE_DATA_LEN 32 // complete length
334 #define VINCENT_STOP_BIT 1 // has stop bit
335 #define VINCENT_LSB 0 // LSB...MSB?
336 #define VINCENT_FRAMES 1 // VINCENT sends 1 frame
337 #define VINCENT_FLAGS 0 // flags
338
339 /*---------------------------------------------------------------------------------------------------------------------------------------------------
340 * RECS80:
341 *---------------------------------------------------------------------------------------------------------------------------------------------------
342 */
343 #define RECS80_START_BIT_PULSE_TIME 158.0e-6 // 158 usec pulse
344 #define RECS80_START_BIT_PAUSE_TIME 7432.0e-6 // 7432 usec pause
345 #define RECS80_PULSE_TIME 158.0e-6 // 158 usec pulse
346 #define RECS80_1_PAUSE_TIME 7432.0e-6 // 7432 usec pause
347 #define RECS80_0_PAUSE_TIME 4902.0e-6 // 4902 usec pause
348 #define RECS80_FRAME_REPEAT_PAUSE_TIME 45.0e-3 // frame repeat after 45ms
349 #define RECS80_ADDRESS_OFFSET 1 // skip 1 bit (toggle bit)
350 #define RECS80_ADDRESS_LEN 3 // read 3 address bits
351 #define RECS80_COMMAND_OFFSET 4 // skip 4 bits (1 toggle + 3 address)
352 #define RECS80_COMMAND_LEN 6 // read 6 command bits
353 #define RECS80_COMPLETE_DATA_LEN 10 // complete length
354 #define RECS80_STOP_BIT 1 // has stop bit
355 #define RECS80_LSB 0 // MSB...LSB
356 #define RECS80_FLAGS 0 // flags
357
358 /*---------------------------------------------------------------------------------------------------------------------------------------------------
359 * RC5:
360 *---------------------------------------------------------------------------------------------------------------------------------------------------
361 */
362 #define RC5_BIT_TIME 889.0e-6 // 889 usec pulse/pause
363 #define RC5_FRAME_REPEAT_PAUSE_TIME 88.9e-3 // frame repeat after 88.9ms
364
365 #define RC5_ADDRESS_OFFSET 1 // skip 1 bit (2nd start)
366 #define RC5_ADDRESS_LEN 6 // read 1 toggle bit (for key repetition detection) + 5 address bits
367 #define RC5_COMMAND_OFFSET 7 // skip 5 bits (2nd start + 1 toggle + 5 address)
368 #define RC5_COMMAND_LEN 6 // read 6 command bits
369 #define RC5_COMPLETE_DATA_LEN 13 // complete length
370 #define RC5_STOP_BIT 0 // has no stop bit
371 #define RC5_LSB 0 // MSB...LSB
372 #define RC5_FLAGS IRMP_PARAM_FLAG_IS_MANCHESTER // flags
373
374 /*---------------------------------------------------------------------------------------------------------------------------------------------------
375 * S100: very similar to RC5, but 14 insted of 13 bits
376 *---------------------------------------------------------------------------------------------------------------------------------------------------
377 */
378 #define S100_BIT_TIME 889.0e-6 // 889 usec pulse/pause
379 #define S100_FRAME_REPEAT_PAUSE_TIME 88.9e-3 // frame repeat after 88.9ms
380
381 #define S100_ADDRESS_OFFSET 1 // skip 1 bit (2nd start)
382 #define S100_ADDRESS_LEN 6 // read 1 toggle bit (for key repetition detection) + 5 address bits
383 #define S100_COMMAND_OFFSET 7 // skip 5 bits (2nd start + 1 toggle + 5 address)
384 #define S100_COMMAND_LEN 7 // read 7 command bits
385 #define S100_COMPLETE_DATA_LEN 14 // complete length
386 #define S100_STOP_BIT 0 // has no stop bit
387 #define S100_LSB 0 // MSB...LSB
388 #define S100_FLAGS IRMP_PARAM_FLAG_IS_MANCHESTER // flags
389
390 /*---------------------------------------------------------------------------------------------------------------------------------------------------
391 * DENON:
392 *---------------------------------------------------------------------------------------------------------------------------------------------------
393 */
394 #define DENON_PULSE_TIME 310.0e-6 // 310 usec pulse in practice, 275 in theory
395 #define DENON_1_PAUSE_TIME 1780.0e-6 // 1780 usec pause in practice, 1900 in theory
396 #define DENON_0_PAUSE_TIME 745.0e-6 // 745 usec pause in practice, 775 in theory
397 #define DENON_FRAMES 2 // DENON sends each frame 2 times
398 #define DENON_AUTO_REPETITION_PAUSE_TIME 45.0e-3 // inverted repetition after 45ms
399 #define DENON_FRAME_REPEAT_PAUSE_TIME 45.0e-3 // frame repeat after 45ms
400 #define DENON_ADDRESS_OFFSET 0 // skip 0 bits
401 #define DENON_ADDRESS_LEN 5 // read 5 address bits
402 #define DENON_COMMAND_OFFSET 5 // skip 5
403 #define DENON_COMMAND_LEN 10 // read 10 command bits
404 #define DENON_COMPLETE_DATA_LEN 15 // complete length
405 #define DENON_STOP_BIT 1 // has stop bit
406 #define DENON_LSB 0 // MSB...LSB
407 #define DENON_FLAGS 0 // flags
408
409 /*---------------------------------------------------------------------------------------------------------------------------------------------------
410 * RC6:
411 *---------------------------------------------------------------------------------------------------------------------------------------------------
412 */
413 #define RC6_START_BIT_PULSE_TIME 2666.0e-6 // 2.666 msec pulse
414 #define RC6_START_BIT_PAUSE_TIME 889.0e-6 // 889 usec pause
415 #define RC6_TOGGLE_BIT_TIME 889.0e-6 // 889 msec pulse/pause
416 #define RC6_BIT_TIME 444.0e-6 // 444 usec pulse/pause
417 #define RC6_BIT_2_TIME 889.0e-6 // 889 usec pulse/pause
418 #define RC6_BIT_3_TIME 1333.0e-6 // 1333 usec pulse/pause
419 #define RC6_FRAME_REPEAT_PAUSE_TIME 45.0e-3 // frame repeat after 45ms
420 #define RC6_ADDRESS_OFFSET 5 // skip "1" + 3 mode bits + 1 toggle bit
421 #define RC6_ADDRESS_LEN 8 // read 8 address bits
422 #define RC6_COMMAND_OFFSET 13 // skip 12 bits ("1" + 3 mode + 1 toggle + 8 address)
423 #define RC6_COMMAND_LEN 8 // read 8 command bits
424 #define RC6_COMPLETE_DATA_LEN_SHORT 21 // complete length
425 #define RC6_COMPLETE_DATA_LEN_LONG 36 // complete length
426 #define RC6_STOP_BIT 0 // has no stop bit
427 #define RC6_LSB 0 // MSB...LSB
428 #define RC6_FLAGS (IRMP_PARAM_FLAG_IS_MANCHESTER | IRMP_PARAM_FLAG_1ST_PULSE_IS_1) // flags
429
430 /*---------------------------------------------------------------------------------------------------------------------------------------------------
431 * RECS80EXT:
432 *---------------------------------------------------------------------------------------------------------------------------------------------------
433 */
434 #define RECS80EXT_START_BIT_PULSE_TIME 158.0e-6 // 158 usec pulse
435 #define RECS80EXT_START_BIT_PAUSE_TIME 3637.0e-6 // 3637 usec pause
436 #define RECS80EXT_PULSE_TIME 158.0e-6 // 158 usec pulse
437 #define RECS80EXT_1_PAUSE_TIME 7432.0e-6 // 7432 usec pause
438 #define RECS80EXT_0_PAUSE_TIME 4902.0e-6 // 4902 usec pause
439 #define RECS80EXT_FRAME_REPEAT_PAUSE_TIME 45.0e-3 // frame repeat after 45ms
440 #define RECS80EXT_ADDRESS_OFFSET 2 // skip 2 bits (2nd start + 1 toggle)
441 #define RECS80EXT_ADDRESS_LEN 4 // read 4 address bits
442 #define RECS80EXT_COMMAND_OFFSET 6 // skip 6 bits (2nd start + 1 toggle + 4 address)
443 #define RECS80EXT_COMMAND_LEN 6 // read 6 command bits
444 #define RECS80EXT_COMPLETE_DATA_LEN 12 // complete length
445 #define RECS80EXT_STOP_BIT 1 // has stop bit
446 #define RECS80EXT_LSB 0 // MSB...LSB
447 #define RECS80EXT_FLAGS 0 // flags
448
449 /*---------------------------------------------------------------------------------------------------------------------------------------------------
450 * NUBERT:
451 *---------------------------------------------------------------------------------------------------------------------------------------------------
452 */
453 #define NUBERT_START_BIT_PULSE_TIME 1340.0e-6 // 1340 usec pulse
454 #define NUBERT_START_BIT_PAUSE_TIME 340.0e-6 // 340 usec pause
455 #define NUBERT_1_PULSE_TIME 1340.0e-6 // 1340 usec pulse
456 #define NUBERT_1_PAUSE_TIME 340.0e-6 // 340 usec pause
457 #define NUBERT_0_PULSE_TIME 500.0e-6 // 500 usec pulse
458 #define NUBERT_0_PAUSE_TIME 1300.0e-6 // 1300 usec pause
459 #define NUBERT_FRAMES 2 // Nubert sends 2 frames
460 #define NUBERT_AUTO_REPETITION_PAUSE_TIME 35.0e-3 // auto repetition after 35ms
461 #define NUBERT_FRAME_REPEAT_PAUSE_TIME 35.0e-3 // frame repeat after 45ms
462 #define NUBERT_ADDRESS_OFFSET 0 // skip 0 bits
463 #define NUBERT_ADDRESS_LEN 0 // read 0 address bits
464 #define NUBERT_COMMAND_OFFSET 0 // skip 0 bits
465 #define NUBERT_COMMAND_LEN 10 // read 10 bits
466 #define NUBERT_COMPLETE_DATA_LEN 10 // complete length
467 #define NUBERT_STOP_BIT 1 // has stop bit
468 #define NUBERT_LSB 0 // MSB?
469 #define NUBERT_FLAGS 0 // flags
470
471 /*---------------------------------------------------------------------------------------------------------------------------------------------------
472 * FAN: (ventilator)
473 *
474 * Similar to NUBERT, but
475 * - has data bit instead of stop bit
476 * - has NO frame repetition
477 *---------------------------------------------------------------------------------------------------------------------------------------------------
478 */
479 #define FAN_START_BIT_PULSE_TIME 1280.0e-6 // 1280 usec pulse
480 #define FAN_START_BIT_PAUSE_TIME 380.0e-6 // 380 usec pause
481 #define FAN_1_PULSE_TIME 1280.0e-6 // 1280 usec pulse
482 #define FAN_1_PAUSE_TIME 380.0e-6 // 380 usec pause
483 #define FAN_0_PULSE_TIME 380.0e-6 // 380 usec pulse
484 #define FAN_0_PAUSE_TIME 1280.0e-6 // 1280 usec pause
485 #define FAN_FRAMES 1 // FAN sends only 1 frame (NUBERT sends 2)
486 #define FAN_AUTO_REPETITION_PAUSE_TIME 6.6e-3 // auto repetition after 6.6ms
487 #define FAN_FRAME_REPEAT_PAUSE_TIME 6.6e-3 // frame repeat after 6.6ms
488 #define FAN_ADDRESS_OFFSET 0 // skip 0 bits
489 #define FAN_ADDRESS_LEN 0 // read 0 address bits
490 #define FAN_COMMAND_OFFSET 0 // skip 0 bits
491 #define FAN_COMMAND_LEN 11 // read 10 bits
492 #define FAN_COMPLETE_DATA_LEN 11 // complete length
493 #define FAN_STOP_BIT 0 // has NO stop bit (fm: this seems to be wrong)
494 #define FAN_LSB 0 // MSB
495 #define FAN_FLAGS 0 // flags
496
497 /*---------------------------------------------------------------------------------------------------------------------------------------------------
498 * SPEAKER:
499 *---------------------------------------------------------------------------------------------------------------------------------------------------
500 */
501 #define SPEAKER_START_BIT_PULSE_TIME 440.0e-6 // 440 usec pulse
502 #define SPEAKER_START_BIT_PAUSE_TIME 1250.0e-6 // 1250 usec pause
503 #define SPEAKER_1_PULSE_TIME 1250.0e-6 // 1250 usec pulse
504 #define SPEAKER_1_PAUSE_TIME 440.0e-6 // 440 usec pause
505 #define SPEAKER_0_PULSE_TIME 440.0e-6 // 440 usec pulse
506 #define SPEAKER_0_PAUSE_TIME 1250.0e-6 // 1250 usec pause
507 #define SPEAKER_FRAMES 2 // SPEAKER sends 2 frames
508 #define SPEAKER_AUTO_REPETITION_PAUSE_TIME 35.0e-3 // auto repetition after 35ms
509 #define SPEAKER_FRAME_REPEAT_PAUSE_TIME 35.0e-3 // frame repeat after 45ms
510 #define SPEAKER_ADDRESS_OFFSET 0 // skip 0 bits
511 #define SPEAKER_ADDRESS_LEN 0 // read 0 address bits
512 #define SPEAKER_COMMAND_OFFSET 0 // skip 0 bits
513 #define SPEAKER_COMMAND_LEN 10 // read 10 bits
514 #define SPEAKER_COMPLETE_DATA_LEN 10 // complete length
515 #define SPEAKER_STOP_BIT 1 // has stop bit
516 #define SPEAKER_LSB 0 // MSB?
517 #define SPEAKER_FLAGS 0 // flags
518
519 /*---------------------------------------------------------------------------------------------------------------------------------------------------
520 * BANG_OLUFSEN:
521 *---------------------------------------------------------------------------------------------------------------------------------------------------
522 */
523 #define BANG_OLUFSEN_START_BIT1_PULSE_TIME 200.0e-6 // 200 usec pulse
524 #define BANG_OLUFSEN_START_BIT1_PAUSE_TIME 3125.0e-6 // 3125 usec pause
525 #define BANG_OLUFSEN_START_BIT2_PULSE_TIME 200.0e-6 // 200 usec pulse
526 #define BANG_OLUFSEN_START_BIT2_PAUSE_TIME 3125.0e-6 // 3125 usec pause
527 #define BANG_OLUFSEN_START_BIT3_PULSE_TIME 200.0e-6 // 200 usec pulse
528 #define BANG_OLUFSEN_START_BIT3_PAUSE_TIME 15625.0e-6 // 15625 usec pause
529 #define BANG_OLUFSEN_START_BIT4_PULSE_TIME 200.0e-6 // 200 usec pulse
530 #define BANG_OLUFSEN_START_BIT4_PAUSE_TIME 3125.0e-6 // 3125 usec pause
531 #define BANG_OLUFSEN_PULSE_TIME 200.0e-6 // 200 usec pulse
532 #define BANG_OLUFSEN_1_PAUSE_TIME 9375.0e-6 // 9375 usec pause
533 #define BANG_OLUFSEN_0_PAUSE_TIME 3125.0e-6 // 3125 usec pause
534 #define BANG_OLUFSEN_R_PAUSE_TIME 6250.0e-6 // 6250 usec pause (repeat last bit)
535 #define BANG_OLUFSEN_TRAILER_BIT_PAUSE_TIME 12500.0e-6 // 12500 usec pause (trailer bit)
536 #define BANG_OLUFSEN_FRAME_REPEAT_PAUSE_TIME 45.0e-3 // frame repeat after 45ms
537 #define BANG_OLUFSEN_ADDRESS_OFFSET 0 // no address bits
538 #define BANG_OLUFSEN_ADDRESS_LEN 0 // no address bits
539 #define BANG_OLUFSEN_COMMAND_OFFSET 3 // skip startbits 2, 3, 4
540 #define BANG_OLUFSEN_COMMAND_LEN 16 // read 16 command bits
541 #define BANG_OLUFSEN_COMPLETE_DATA_LEN 20 // complete length: startbits 2, 3, 4 + 16 data bits + trailer bit
542 #define BANG_OLUFSEN_STOP_BIT 1 // has stop bit
543 #define BANG_OLUFSEN_LSB 0 // MSB...LSB
544 #define BANG_OLUFSEN_FLAGS 0 // flags
545
546 /*---------------------------------------------------------------------------------------------------------------------------------------------------
547 * GRUNDIG & NOKIA
548 *---------------------------------------------------------------------------------------------------------------------------------------------------
549 */
550 #define GRUNDIG_NOKIA_IR60_BIT_TIME 528.0e-6 // 528 usec pulse/pause
551 #define GRUNDIG_NOKIA_IR60_PRE_PAUSE_TIME 2639.0e-6 // 2639 usec pause after pre bit
552 #define GRUNDIG_NOKIA_IR60_FRAME_REPEAT_PAUSE_TIME 117.76e-3 // info frame repeat after 117.76 ms
553 #define GRUNDIG_NOKIA_IR60_STOP_BIT 0 // has no stop bit
554 #define GRUNDIG_NOKIA_IR60_LSB 1 // MSB...LSB
555 #define GRUNDIG_NOKIA_IR60_FLAGS (IRMP_PARAM_FLAG_IS_MANCHESTER | IRMP_PARAM_FLAG_1ST_PULSE_IS_1) // flags
556
557 #define GRUNDIG_FRAMES 2 // GRUNDIG sends each frame 1+1 times
558 #define GRUNDIG_AUTO_REPETITION_PAUSE_TIME 20.0e-3 // repetition after 20ms
559 #define GRUNDIG_ADDRESS_OFFSET 0 // no address
560 #define GRUNDIG_ADDRESS_LEN 0 // no address
561 #define GRUNDIG_COMMAND_OFFSET 1 // skip 1 start bit
562 #define GRUNDIG_COMMAND_LEN 9 // read 9 command bits
563 #define GRUNDIG_COMPLETE_DATA_LEN 10 // complete length: 1 start bit + 9 data bits
564
565 #define NOKIA_FRAMES 3 // NOKIA sends each frame 1 + 1 + 1 times
566 #define NOKIA_AUTO_REPETITION_PAUSE_TIME 20.0e-3 // repetition after 20ms
567 #define NOKIA_ADDRESS_OFFSET 9 // skip 9 bits (1 start bit + 8 data bits)
568 #define NOKIA_ADDRESS_LEN 8 // 7 address bits
569 #define NOKIA_COMMAND_OFFSET 1 // skip 1 bit (1 start bit)
570 #define NOKIA_COMMAND_LEN 8 // read 8 command bits
571 #define NOKIA_COMPLETE_DATA_LEN 17 // complete length: 1 start bit + 8 address bits + 8 command bits
572
573 /*---------------------------------------------------------------------------------------------------------------------------------------------------
574 * IR60:
575 *---------------------------------------------------------------------------------------------------------------------------------------------------
576 */
577 #define IR60_FRAMES 2 // IR60 sends each frame 1+1 times
578 #define IR60_AUTO_REPETITION_PAUSE_TIME 22.2e-3 // repetition after 22.2ms
579 #define IR60_TIMEOUT_TIME 5000.0e-6 // timeout grundig frame, switch to IR60
580 #define IR60_ADDRESS_OFFSET 0 // skip 1 bits
581 #define IR60_ADDRESS_LEN 0 // read 0 address bits
582 #define IR60_COMMAND_OFFSET 0 // skip 1 bit (start bit after pre bit, always 1)
583 #define IR60_COMMAND_LEN 7 // read 6 command bits
584 #define IR60_COMPLETE_DATA_LEN 7 // complete length
585
586 /*---------------------------------------------------------------------------------------------------------------------------------------------------
587 * SIEMENS & RUWIDO:
588 *---------------------------------------------------------------------------------------------------------------------------------------------------
589 */
590
591 #if 0
592 #define SIEMENS_OR_RUWIDO_START_BIT_PULSE_TIME 275.0e-6 // 275 usec pulse
593 #define SIEMENS_OR_RUWIDO_START_BIT_PAUSE_TIME 550.0e-6 // 550 usec pause
594 #define SIEMENS_OR_RUWIDO_BIT_PULSE_TIME 275.0e-6 // 275 usec short pulse
595 #define SIEMENS_OR_RUWIDO_BIT_PULSE_TIME_2 550.0e-6 // 550 usec long pulse
596 #define SIEMENS_OR_RUWIDO_BIT_PAUSE_TIME 275.0e-6 // 275 usec short pause
597 #define SIEMENS_OR_RUWIDO_BIT_PAUSE_TIME_2 550.0e-6 // 550 usec long pause
598 #else
599 #define SIEMENS_OR_RUWIDO_START_BIT_PULSE_TIME 370.0e-6 // 370 usec pulse
600 #define SIEMENS_OR_RUWIDO_START_BIT_PAUSE_TIME 550.0e-6 // 550 usec pause
601 #define SIEMENS_OR_RUWIDO_BIT_PULSE_TIME 370.0e-6 // 370 usec short pulse
602 #define SIEMENS_OR_RUWIDO_BIT_PULSE_TIME_2 680.0e-6 // 680 usec long pulse
603 #define SIEMENS_OR_RUWIDO_BIT_PAUSE_TIME 275.0e-6 // 275 usec short pause
604 #define SIEMENS_OR_RUWIDO_BIT_PAUSE_TIME_2 550.0e-6 // 550 usec long pause
605 #endif
606
607 #define SIEMENS_OR_RUWIDO_FRAME_REPEAT_PAUSE_TIME 45.0e-3 // frame repeat after 45ms
608 #define SIEMENS_OR_RUWIDO_STOP_BIT 0 // has no stop bit
609 #define SIEMENS_OR_RUWIDO_LSB 0 // MSB...LSB
610 #define SIEMENS_OR_RUWIDO_FLAGS (IRMP_PARAM_FLAG_IS_MANCHESTER | IRMP_PARAM_FLAG_1ST_PULSE_IS_1) // flags
611
612 #define RUWIDO_ADDRESS_OFFSET 0 // skip 0 bits
613 #define RUWIDO_ADDRESS_LEN 9 // read 9 address bits
614 #define RUWIDO_COMMAND_OFFSET 9 // skip 9 bits
615 #define RUWIDO_COMMAND_LEN 8 // read 7 + 1 command bits, last bit is only check bit
616 #define RUWIDO_COMPLETE_DATA_LEN 17 // complete length
617
618 #define SIEMENS_ADDRESS_OFFSET 0 // skip 0 bits
619 #define SIEMENS_ADDRESS_LEN 11 // read 11 bits
620 #define SIEMENS_COMMAND_OFFSET 11 // skip 11 bits
621 #define SIEMENS_COMMAND_LEN 11 // read 10 + 1 command bits, last bit is only check bit
622 #define SIEMENS_COMPLETE_DATA_LEN 22 // complete length
623
624 /*---------------------------------------------------------------------------------------------------------------------------------------------------
625 * FDC:
626 *---------------------------------------------------------------------------------------------------------------------------------------------------
627 */
628 #define FDC_START_BIT_PULSE_TIME 2085.0e-6 // 2085 usec pulse
629 #define FDC_START_BIT_PAUSE_TIME 966.0e-6 // 966 usec pause
630 #define FDC_PULSE_TIME 300.0e-6 // 300 usec pulse
631 #define FDC_1_PAUSE_TIME 715.0e-6 // 715 usec pause
632 #define FDC_0_PAUSE_TIME 220.0e-6 // 220 usec pause
633 #define FDC_FRAME_REPEAT_PAUSE_TIME 60.0e-3 // frame repeat after 60ms
634 #define FDC_ADDRESS_OFFSET 0 // skip 0 bits
635 #define FDC_ADDRESS_LEN 14 // read 14 address bits, but use only 6, shift 8 into command
636 #define FDC_COMMAND_OFFSET 20 // skip 20 bits
637 #define FDC_COMMAND_LEN 12 // read 12 bits
638 #define FDC_COMPLETE_DATA_LEN 40 // complete length
639 #define FDC_STOP_BIT 1 // has stop bit
640 #define FDC_LSB 1 // LSB...MSB
641 #define FDC_FLAGS 0 // flags
642
643 /*---------------------------------------------------------------------------------------------------------------------------------------------------
644 * RCCAR:
645 *---------------------------------------------------------------------------------------------------------------------------------------------------
646 */
647 #define RCCAR_START_BIT_PULSE_TIME 2000.0e-6 // 2000 usec pulse
648 #define RCCAR_START_BIT_PAUSE_TIME 2000.0e-6 // 2000 usec pause
649 #define RCCAR_PULSE_TIME 600.0e-6 // 360 usec pulse
650 #define RCCAR_1_PAUSE_TIME 450.0e-6 // 650 usec pause
651 #define RCCAR_0_PAUSE_TIME 900.0e-6 // 180 usec pause
652 #define RCCAR_FRAME_REPEAT_PAUSE_TIME 40.0e-3 // frame repeat after 40ms
653 #define RCCAR_ADDRESS_OFFSET 0 // skip 0 bits
654 #define RCCAR_ADDRESS_LEN 0 // read 0 address bits
655 #define RCCAR_COMMAND_OFFSET 0 // skip 0 bits
656 #define RCCAR_COMMAND_LEN 13 // read 13 bits
657 #define RCCAR_COMPLETE_DATA_LEN 13 // complete length
658 #define RCCAR_STOP_BIT 1 // has stop bit
659 #define RCCAR_LSB 1 // LSB...MSB
660 #define RCCAR_FLAGS 0 // flags
661
662 /*---------------------------------------------------------------------------------------------------------------------------------------------------
663 * JVC:
664 *---------------------------------------------------------------------------------------------------------------------------------------------------
665 */
666 #define JVC_START_BIT_PULSE_TIME 9000.0e-6 // 9000 usec pulse
667 #define JVC_START_BIT_PAUSE_TIME 4500.0e-6 // 4500 usec pause
668 #define JVC_PULSE_TIME 560.0e-6 // 560 usec pulse
669 #define JVC_1_PAUSE_TIME 1690.0e-6 // 1690 usec pause
670 #define JVC_0_PAUSE_TIME 560.0e-6 // 560 usec pause
671 #define JVC_FRAME_REPEAT_PAUSE_TIME 22.0e-3 // frame repeat after 22ms
672 #define JVC_ADDRESS_OFFSET 0 // skip 0 bits
673 #define JVC_ADDRESS_LEN 4 // read 4 address bits
674 #define JVC_COMMAND_OFFSET 4 // skip 4 bits
675 #define JVC_COMMAND_LEN 12 // read 12 bits
676 #define JVC_COMPLETE_DATA_LEN 16 // complete length
677 #define JVC_STOP_BIT 1 // has stop bit
678 #define JVC_LSB 1 // LSB...MSB
679 #define JVC_FLAGS 0 // flags
680
681 /*---------------------------------------------------------------------------------------------------------------------------------------------------
682 * NIKON:
683 *---------------------------------------------------------------------------------------------------------------------------------------------------
684 */
685 #define NIKON_START_BIT_PULSE_TIME 2200.0e-6 // 2200 usec pulse
686 #define NIKON_START_BIT_PAUSE_TIME 27100.0e-6 // 27100 usec pause
687 #define NIKON_PULSE_TIME 500.0e-6 // 500 usec pulse
688 #define NIKON_1_PAUSE_TIME 3500.0e-6 // 3500 usec pause
689 #define NIKON_0_PAUSE_TIME 1500.0e-6 // 1500 usec pause
690 #define NIKON_FRAME_REPEAT_PAUSE_TIME 60.0e-3 // frame repeat after 60ms
691 #define NIKON_ADDRESS_OFFSET 0 // skip 0 bits
692 #define NIKON_ADDRESS_LEN 0 // read 0 address bits
693 #define NIKON_COMMAND_OFFSET 0 // skip 0 bits
694 #define NIKON_COMMAND_LEN 2 // read 2 bits
695 #define NIKON_COMPLETE_DATA_LEN 2 // complete length
696 #define NIKON_STOP_BIT 1 // has stop bit
697 #define NIKON_LSB 0 // LSB...MSB
698 #define NIKON_FLAGS 0 // flags
699
700 /*---------------------------------------------------------------------------------------------------------------------------------------------------
701 * KATHREIN:
702 *---------------------------------------------------------------------------------------------------------------------------------------------------
703 */
704 #define KATHREIN_START_BIT_PULSE_TIME 210.0e-6 // 1340 usec pulse
705 #define KATHREIN_START_BIT_PAUSE_TIME 6218.0e-6 // 340 usec pause
706 #define KATHREIN_1_PULSE_TIME 210.0e-6 // 1340 usec pulse
707 #define KATHREIN_1_PAUSE_TIME 3000.0e-6 // 340 usec pause
708 #define KATHREIN_0_PULSE_TIME 210.0e-6 // 500 usec pulse
709 #define KATHREIN_0_PAUSE_TIME 1400.0e-6 // 1300 usec pause
710 #define KATHREIN_SYNC_BIT_PAUSE_LEN_TIME 4600.0e-6 // 4600 usec sync (on 6th and/or 8th bit)
711 #define KATHREIN_FRAMES 1 // Kathrein sends 1 frame
712 #define KATHREIN_AUTO_REPETITION_PAUSE_TIME 35.0e-3 // auto repetition after 35ms
713 #define KATHREIN_FRAME_REPEAT_PAUSE_TIME 35.0e-3 // frame repeat after 35ms
714 #define KATHREIN_ADDRESS_OFFSET 1 // skip 1 bits
715 #define KATHREIN_ADDRESS_LEN 4 // read 4 address bits
716 #define KATHREIN_COMMAND_OFFSET 5 // skip 5 bits
717 #define KATHREIN_COMMAND_LEN 7 // read 7 bits
718 #define KATHREIN_COMPLETE_DATA_LEN 13 // complete length
719 #define KATHREIN_STOP_BIT 1 // has stop bit
720 #define KATHREIN_LSB 0 // MSB
721 #define KATHREIN_FLAGS 0 // flags
722
723 /*---------------------------------------------------------------------------------------------------------------------------------------------------
724 * NETBOX:
725 *---------------------------------------------------------------------------------------------------------------------------------------------------
726 */
727 #define NETBOX_START_BIT_PULSE_TIME 2400.0e-6 // 2400 usec pulse
728 #define NETBOX_START_BIT_PAUSE_TIME 800.0e-6 // 800 usec pause
729 #define NETBOX_PULSE_TIME 800.0e-6 // 800 usec pulse
730 #define NETBOX_PAUSE_TIME 800.0e-6 // 800 usec pause
731 #define NETBOX_FRAMES 1 // Netbox sends 1 frame
732 #define NETBOX_AUTO_REPETITION_PAUSE_TIME 35.0e-3 // auto repetition after 35ms
733 #define NETBOX_FRAME_REPEAT_PAUSE_TIME 35.0e-3 // frame repeat after 35ms
734 #define NETBOX_ADDRESS_OFFSET 0 // skip 0 bits
735 #define NETBOX_ADDRESS_LEN 3 // read 3 address bits
736 #define NETBOX_COMMAND_OFFSET 3 // skip 3 bits
737 #define NETBOX_COMMAND_LEN 13 // read 13 bits
738 #define NETBOX_COMPLETE_DATA_LEN 16 // complete length
739 #define NETBOX_STOP_BIT 0 // has no stop bit
740 #define NETBOX_LSB 1 // LSB
741 #define NETBOX_FLAGS IRMP_PARAM_FLAG_IS_SERIAL // flags
742
743 /*---------------------------------------------------------------------------------------------------------------------------------------------------
744 * LEGO:
745 *---------------------------------------------------------------------------------------------------------------------------------------------------
746 */
747 #define LEGO_START_BIT_PULSE_TIME 158.0e-6 // 158 usec pulse ( 6 x 1/38kHz)
748 #define LEGO_START_BIT_PAUSE_TIME 1026.0e-6 // 1026 usec pause (39 x 1/38kHz)
749 #define LEGO_PULSE_TIME 158.0e-6 // 158 usec pulse ( 6 x 1/38kHz)
750 #define LEGO_1_PAUSE_TIME 553.0e-6 // 553 usec pause (21 x 1/38kHz)
751 #define LEGO_0_PAUSE_TIME 263.0e-6 // 263 usec pause (10 x 1/38kHz)
752 #define LEGO_FRAME_REPEAT_PAUSE_TIME 40.0e-3 // frame repeat after 40ms
753 #define LEGO_ADDRESS_OFFSET 0 // skip 0 bits
754 #define LEGO_ADDRESS_LEN 0 // read 0 address bits
755 #define LEGO_COMMAND_OFFSET 0 // skip 0 bits
756 #define LEGO_COMMAND_LEN 16 // read 16 bits (12 command + 4 CRC)
757 #define LEGO_COMPLETE_DATA_LEN 16 // complete length
758 #define LEGO_STOP_BIT 1 // has stop bit
759 #define LEGO_LSB 0 // MSB...LSB
760 #define LEGO_FLAGS 0 // flags
761
762 /*---------------------------------------------------------------------------------------------------------------------------------------------------
763 * THOMSON:
764 *---------------------------------------------------------------------------------------------------------------------------------------------------
765 */
766 #define THOMSON_PULSE_TIME 550.0e-6 // 550 usec pulse
767 #define THOMSON_1_PAUSE_TIME 4500.0e-6 // 4500 usec pause
768 #define THOMSON_0_PAUSE_TIME 2000.0e-6 // 2000 usec pause
769 #define THOMSON_FRAMES 1 // THOMSON sends 1 frame
770 #define THOMSON_AUTO_REPETITION_PAUSE_TIME 35.0e-3 // repetition after 35ms
771 #define THOMSON_FRAME_REPEAT_PAUSE_TIME 35.0e-3 // frame repeat after 35ms
772 #define THOMSON_ADDRESS_OFFSET 0 // skip 0 bits
773 #define THOMSON_ADDRESS_LEN 4 // read 4 address bits
774 #define THOMSON_COMMAND_OFFSET 5 // skip 4 address bits + 1 toggle bit
775 #define THOMSON_COMMAND_LEN 7 // read 7 command bits
776 #define THOMSON_COMPLETE_DATA_LEN 12 // complete length
777 #define THOMSON_STOP_BIT 1 // has stop bit
778 #define THOMSON_LSB 0 // MSB...LSB
779 #define THOMSON_FLAGS 0 // flags
780
781 /*---------------------------------------------------------------------------------------------------------------------------------------------------
782 * BOSE:
783 *---------------------------------------------------------------------------------------------------------------------------------------------------
784 */
785 #define BOSE_START_BIT_PULSE_TIME 1060.0e-6 // 1060 usec pulse
786 #define BOSE_START_BIT_PAUSE_TIME 1425.0e-6 // 1425 usec pause
787 #define BOSE_PULSE_TIME 550.0e-6 // 550 usec pulse
788 #define BOSE_1_PAUSE_TIME 1425.0e-6 // 1425 usec pause
789 #define BOSE_0_PAUSE_TIME 437.0e-6 // 437 usec pause
790 #define BOSE_FRAMES 1
791 #define BOSE_AUTO_REPETITION_PAUSE_TIME 40.0e-3 // repetition after 40ms?
792 #define BOSE_FRAME_REPEAT_PAUSE_TIME 40.0e-3 // frame repeat after 40ms?
793 #define BOSE_ADDRESS_OFFSET 0 // skip 0 bits
794 #define BOSE_ADDRESS_LEN 0 // read 16 address bits
795 #define BOSE_COMMAND_OFFSET 0 // skip 16 bits (8 address + 8 /address)
796 #define BOSE_COMMAND_LEN 16 // read 16 bits (8 command + 8 /command)
797 #define BOSE_COMPLETE_DATA_LEN 16 // complete length
798 #define BOSE_STOP_BIT 1 // has stop bit
799 #define BOSE_LSB 1 // LSB...MSB
800 #define BOSE_FLAGS 0 // flags
801
802 /*---------------------------------------------------------------------------------------------------------------------------------------------------
803 * A1TVBOX:
804 * 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
805 * This is not very easy to detect, because 1st and 2nd pause of both start bits are closely spaced.
806 * So IRMP looks for pseudo start bit with 300/340 usec and ignores the second half of the 2nd bit (250us pulse)
807 * This method only works because the first data bit (which is the 3rd bit) following is always "1":
808 * IRMP treats the first "long" pulse (250us of 2nd start bit + 250us of 1st data bit) of this "1" as a first _short_ pulse.
809 * This is a bug in IRMP's manchester decoder, but a good feature here ;-)
810 *---------------------------------------------------------------------------------------------------------------------------------------------------
811 */
812 #define A1TVBOX_START_BIT_PULSE_TIME 300.0e-6 // 300 usec pulse
813 #define A1TVBOX_START_BIT_PAUSE_TIME 340.0e-6 // 340 usec pause
814 #define A1TVBOX_BIT_PULSE_TIME 250.0e-6 // 250 usec pulse
815 #define A1TVBOX_BIT_PAUSE_TIME 150.0e-6 // 150 usec pulse
816 #define A1TVBOX_STOP_BIT 0 // has no stop bit
817 #define A1TVBOX_LSB 0 // MSB...LSB
818 #define A1TVBOX_FLAGS (IRMP_PARAM_FLAG_IS_MANCHESTER | IRMP_PARAM_FLAG_1ST_PULSE_IS_1 ) // flags
819 #define A1TVBOX_FRAMES 1 // A1TVBOX sends each frame 1 times
820 #define A1TVBOX_ADDRESS_OFFSET 1 // skip 1 bits
821 #define A1TVBOX_ADDRESS_LEN 8 // read 8 address bits
822 #define A1TVBOX_COMMAND_OFFSET 9 // skip 9 bits (start bit + address)
823 #define A1TVBOX_COMMAND_LEN 8 // read 8 command bits
824 #define A1TVBOX_COMPLETE_DATA_LEN 17 // complete length incl. start bit
825 #define A1TVBOX_FRAME_REPEAT_PAUSE_TIME 50.0e-3 // 50 msec pause between frames, don't know if it is correct
826
827 /*---------------------------------------------------------------------------------------------------------------------------------------------------
828 * MERLIN:
829 * See notes for A1TVBOX
830 *---------------------------------------------------------------------------------------------------------------------------------------------------
831 */
832 #define MERLIN_START_BIT_PULSE_TIME 210.0e-6 // 210 usec pulse
833 #define MERLIN_START_BIT_PAUSE_TIME 420.0e-6 // 429 usec pause
834 #define MERLIN_BIT_PULSE_TIME 210.0e-6 // 210 usec pulse
835 #define MERLIN_BIT_PAUSE_TIME 210.0e-6 // 210 usec pulse
836 #define MERLIN_STOP_BIT 0 // has no stop bit
837 #define MERLIN_LSB 0 // MSB...LSB
838 #define MERLIN_FLAGS (IRMP_PARAM_FLAG_IS_MANCHESTER | IRMP_PARAM_FLAG_1ST_PULSE_IS_1 ) // flags
839 #define MERLIN_FRAMES 1 // MERLIN sends each frame 1 times
840 #define MERLIN_ADDRESS_OFFSET 1 // skip 1 bits
841 #define MERLIN_ADDRESS_LEN 8 // read 8 address bits
842 #define MERLIN_COMMAND_OFFSET 8 // skip 9 bits (start bit + address)
843 #define MERLIN_COMMAND_LEN 10 // read 8 command bits
844 #define MERLIN_COMPLETE_DATA_LEN 19 // complete length incl. start bit
845 #define MERLIN_FRAME_REPEAT_PAUSE_TIME 50.0e-3 // 50 msec pause between frames, don't know if it is correct
846
847 /*---------------------------------------------------------------------------------------------------------------------------------------------------
848 * ORTEK (Hama): 6 address bits + 2 frame type bits + 6 command bits + 1 parity bit + 1 unknown bit + "1" + "0"
849 *---------------------------------------------------------------------------------------------------------------------------------------------------
850 */
851 #define ORTEK_START_BIT_PULSE_TIME 2000.0e-6 // 2000 usec pulse
852 #define ORTEK_START_BIT_PAUSE_TIME 1000.0e-6 // 1000 usec pause
853 #define ORTEK_BIT_TIME 500.0e-6 // 500 usec pulse/pause
854 #define ORTEK_FRAME_REPEAT_PAUSE_TIME 45.0e-3 // frame repeat after 45ms
855 #define ORTEK_ADDRESS_OFFSET 0 // skip 0 bits
856 #define ORTEK_ADDRESS_LEN 8 // read 6 address bits + 2 special bits
857 #define ORTEK_COMMAND_OFFSET 8 // skip 6 address bits + 2 special bits
858 #define ORTEK_COMMAND_LEN 6 // read 6 command bits
859 #define ORTEK_COMPLETE_DATA_LEN 18 // complete length
860 #define ORTEK_STOP_BIT 0 // has no stop bit
861 #define ORTEK_LSB 0 // MSB...LSB
862 #define ORTEK_FLAGS (IRMP_PARAM_FLAG_IS_MANCHESTER | IRMP_PARAM_FLAG_1ST_PULSE_IS_1) // flags
863
864 /*---------------------------------------------------------------------------------------------------------------------------------------------------
865 * TELEFUNKEN:
866 *---------------------------------------------------------------------------------------------------------------------------------------------------
867 */
868 #define TELEFUNKEN_START_BIT_PULSE_TIME 600.0e-6 // 600 usec pulse
869 #define TELEFUNKEN_START_BIT_PAUSE_TIME 1500.0e-6 // 1500 usec pause
870 #define TELEFUNKEN_PULSE_TIME 600.0e-6 // 600 usec pulse
871 #define TELEFUNKEN_1_PAUSE_TIME 1500.0e-6 // 1500 usec pause
872 #define TELEFUNKEN_0_PAUSE_TIME 600.0e-6 // 600 usec pause
873 #define TELEFUNKEN_FRAME_REPEAT_PAUSE_TIME 22.0e-3 // frame repeat after XX ms ?????
874 #define TELEFUNKEN_ADDRESS_OFFSET 0 // skip 0 bits
875 #define TELEFUNKEN_ADDRESS_LEN 0 // read 0 address bits
876 #define TELEFUNKEN_COMMAND_OFFSET 0 // skip 0 bits
877 #define TELEFUNKEN_COMMAND_LEN 15 // read 15 bits
878 #define TELEFUNKEN_COMPLETE_DATA_LEN 15 // complete length
879 #define TELEFUNKEN_STOP_BIT 1 // has stop bit
880 #define TELEFUNKEN_LSB 0 // LSB...MSB
881 #define TELEFUNKEN_FLAGS 0 // flags
882
883 /*---------------------------------------------------------------------------------------------------------------------------------------------------
884 * ROOMBA
885 *---------------------------------------------------------------------------------------------------------------------------------------------------
886 */
887 #define ROOMBA_START_BIT_PULSE_TIME 2790.0e-6 // 2790 usec pulse
888 #define ROOMBA_START_BIT_PAUSE_TIME 930.0e-6 // 930 usec pause
889 #define ROOMBA_0_PULSE_TIME 930.0e-6 // 930 usec pulse
890 #define ROOMBA_1_PULSE_TIME 2790.0e-6 // 2790 usec pulse
891 #define ROOMBA_0_PAUSE_TIME 2790.0e-6 // 2790 usec pause
892 #define ROOMBA_1_PAUSE_TIME 930.0e-6 // 930 usec pause
893 #define ROOMBA_FRAME_REPEAT_PAUSE_TIME 18.0e-3 // frame repeat after 18ms
894 #define ROOMBA_ADDRESS_OFFSET 0 // skip 0 bits
895 #define ROOMBA_ADDRESS_LEN 0 // read 0 address bits
896 #define ROOMBA_COMMAND_OFFSET 0 // skip 0 bits
897 #define ROOMBA_COMMAND_LEN 7 // read 7 bits
898 #define ROOMBA_COMPLETE_DATA_LEN 7 // complete length
899 #define ROOMBA_STOP_BIT 0 // has stop bit (fm: sure?)
900 #define ROOMBA_LSB 0 // MSB...LSB
901 #define ROOMBA_FLAGS 0 // flags
902 #define ROOMBA_FRAMES 8 // ROOMBA sends 8 frames (this is a lie, but more comfortable)
903
904 /*---------------------------------------------------------------------------------------------------------------------------------------------------
905 * RC-MM (32, 24, or 12 bit)
906 *---------------------------------------------------------------------------------------------------------------------------------------------------
907 */
908 #define RCMM32_START_BIT_PULSE_TIME 500.0e-6 // 500 usec pulse
909 #define RCMM32_START_BIT_PAUSE_TIME 220.0e-6 // 220 usec pause
910 #define RCMM32_PULSE_TIME 230.0e-6 // 230 usec pulse
911 #define RCMM32_00_PAUSE_TIME 220.0e-6 // 220 usec pause
912 #define RCMM32_01_PAUSE_TIME 370.0e-6 // 370 usec pause
913 #define RCMM32_10_PAUSE_TIME 540.0e-6 // 540 usec pause
914 #define RCMM32_11_PAUSE_TIME 720.0e-6 // 720 usec pause
915
916 #define RCMM32_FRAME_REPEAT_PAUSE_TIME 80.0e-3 // frame repeat after 80 ms
917 #define RCMM32_ADDRESS_OFFSET 0 // skip 0 bits
918 #define RCMM32_ADDRESS_LEN 16 // read 16 address bits
919 #define RCMM32_COMMAND_OFFSET 17 // skip 17 bits
920 #define RCMM32_COMMAND_LEN 15 // read 15 bits
921 #define RCMM32_COMPLETE_DATA_LEN 32 // complete length
922 #define RCMM32_STOP_BIT 1 // has stop bit
923 #define RCMM32_LSB 0 // LSB...MSB
924 #define RCMM32_FLAGS 0 // flags
925
926 /*---------------------------------------------------------------------------------------------------------------------------------------------------
927 * PENTAX:
928 *---------------------------------------------------------------------------------------------------------------------------------------------------
929 */
930 #define PENTAX_START_BIT_PULSE_TIME 13000.0e-6 // 13 msec pulse
931 #define PENTAX_START_BIT_PAUSE_TIME 3000.0e-6 // 3 msec pause
932 #define PENTAX_PULSE_TIME 1000.0e-6 // 1 msec pulse
933 #define PENTAX_1_PAUSE_TIME 3000.0e-6 // 3 msec pause
934 #define PENTAX_0_PAUSE_TIME 1000.0e-6 // 1 msec pause
935 #define PENTAX_FRAME_REPEAT_PAUSE_TIME 60.0e-3 // frame repeat after 60ms
936 #define PENTAX_ADDRESS_OFFSET 0 // skip 0 bits
937 #define PENTAX_ADDRESS_LEN 0 // read 0 address bits
938 #define PENTAX_COMMAND_OFFSET 0 // skip 0 bits
939 #define PENTAX_COMMAND_LEN 6 // read 6 bits
940 #define PENTAX_COMPLETE_DATA_LEN 6 // complete length
941 #define PENTAX_STOP_BIT 1 // has stop bit
942 #define PENTAX_LSB 0 // LSB...MSB
943 #define PENTAX_FLAGS 0 // flags
944
945 /*---------------------------------------------------------------------------------------------------------------------------------------------------
946 * ACP24: Stiebel Eltron ACP24 air conditioner
947 *---------------------------------------------------------------------------------------------------------------------------------------------------
948 */
949 #define ACP24_START_BIT_PULSE_TIME 390.0e-6 // 390 usec pulse
950 #define ACP24_START_BIT_PAUSE_TIME 950.0e-6 // 950 usec pause
951 #define ACP24_PULSE_TIME 390.0e-6 // 390 usec pulse
952 #define ACP24_1_PAUSE_TIME 1300.0e-6 // 1300 usec pause
953 #define ACP24_0_PAUSE_TIME 950.0e-6 // 950 usec pause
954 #define ACP24_FRAME_REPEAT_PAUSE_TIME 22.0e-3 // frame repeat after 22ms?
955 #define ACP24_ADDRESS_OFFSET 0 // skip 0 bits
956 #define ACP24_ADDRESS_LEN 0 // read 6 address bits
957 #define ACP24_COMMAND_OFFSET 0 // skip 6 bits
958 #define ACP24_COMMAND_LEN 0 // read 0 bits (70 bits will be read and compressed by special routine)
959 #define ACP24_COMPLETE_DATA_LEN 70 // complete length
960 #define ACP24_STOP_BIT 1 // has stop bit
961 #define ACP24_LSB 0 // LSB...MSB
962 #define ACP24_FLAGS 0 // flags
963
964 /*---------------------------------------------------------------------------------------------------------------------------------------------------
965 * RADIO1 - e.g. Tevion
966 *---------------------------------------------------------------------------------------------------------------------------------------------------
967 */
968 #define RADIO1_START_BIT_PULSE_TIME 3000.0e-6 // 3000 usec pulse
969 #define RADIO1_START_BIT_PAUSE_TIME 7000.0e-6 // 7000 usec pulse
970 #define RADIO1_0_PULSE_TIME 500.0e-6 // 500 usec pulse
971 #define RADIO1_0_PAUSE_TIME 1000.0e-6 // 1000 usec pause
972 #define RADIO1_1_PULSE_TIME 1000.0e-6 // 1000 usec pulse
973 #define RADIO1_1_PAUSE_TIME 500.0e-6 // 500 usec pause
974
975 #define RADIO1_FRAME_REPEAT_PAUSE_TIME 25.0e-3 // frame repeat after 25ms
976 #define RADIO1_ADDRESS_OFFSET 4 // skip 4 bits
977 #define RADIO1_ADDRESS_LEN 16 // read 16 address bits
978 #define RADIO1_COMMAND_OFFSET 20 // skip 4 + 16 bits
979 #define RADIO1_COMMAND_LEN 3 // read 3 command bits
980 #define RADIO1_COMPLETE_DATA_LEN 23 // complete length
981 #define RADIO1_STOP_BIT 1 // has stop bit
982 #define RADIO1_LSB 1 // LSB...MSB?
983 #define RADIO1_FLAGS 0 // flags
984
985 /*---------------------------------------------------------------------------------------------------------------------------------------------------
986 * Frame Repetitions:
987 *---------------------------------------------------------------------------------------------------------------------------------------------------
988 */
989 #define AUTO_FRAME_REPETITION_TIME 80.0e-3 // SIRCS/SAMSUNG32/NUBERT: automatic repetition after 25-50ms
990
991 #endif // _IRMP_PROTOCOLS_H_