]> cloudbase.mooo.com Git - irmp.git/blame - irsndconfig.h
version 2.0.0-pre3: changed handling of double width pulses/pauses in manchester...
[irmp.git] / irsndconfig.h
CommitLineData
46dd89b7 1/*---------------------------------------------------------------------------------------------------------------------------------------------------\r
2 * irsndconfig.h\r
3 *\r
f50e01e7 4 * Copyright (c) 2010-2011 Frank Meyer - frank(at)fli4l.de\r
46dd89b7 5 *\r
f50e01e7 6 * $Id: irsndconfig.h,v 1.20 2011/04/11 13:28:12 fm Exp $\r
46dd89b7 7 *\r
8 * ATMEGA88 @ 8 MHz\r
9 *\r
10 * This program is free software; you can redistribute it and/or modify\r
11 * it under the terms of the GNU General Public License as published by\r
12 * the Free Software Foundation; either version 2 of the License, or\r
13 * (at your option) any later version.\r
14 *---------------------------------------------------------------------------------------------------------------------------------------------------\r
15 */\r
16\r
b5ea7869 17/*---------------------------------------------------------------------------------------------------------------------------------------------------\r
f50e01e7 18 * Change F_INTERRUPTS if you change the number of interrupts per second, F_INTERRUPTS should be in the range from 10000 to 20000, typically 15000\r
b5ea7869 19 *---------------------------------------------------------------------------------------------------------------------------------------------------\r
20 */\r
21#ifndef F_INTERRUPTS\r
f50e01e7 22#define F_INTERRUPTS 15000 // interrupts per second\r
b5ea7869 23#endif\r
24\r
46dd89b7 25/*---------------------------------------------------------------------------------------------------------------------------------------------------\r
26 * Change settings from 1 to 0 if you want to disable one or more encoders.\r
27 * This saves program space.\r
28 * 1 enable decoder\r
29 * 0 disable decoder\r
30 *---------------------------------------------------------------------------------------------------------------------------------------------------\r
31 */\r
f50e01e7 32\r
33// typical protocols, disable here! Enable Remarks F_INTERRUPTS Program Space\r
34#define IRSND_SUPPORT_SIRCS_PROTOCOL 1 // Sony SIRCS >= 10000 ~150 bytes\r
35#define IRSND_SUPPORT_NEC_PROTOCOL 1 // NEC + APPLE >= 10000 ~100 bytes\r
36#define IRSND_SUPPORT_SAMSUNG_PROTOCOL 1 // Samsung + Samsung32 >= 10000 ~300 bytes\r
37#define IRSND_SUPPORT_MATSUSHITA_PROTOCOL 1 // Matsushita >= 10000 ~200 bytes\r
38#define IRSND_SUPPORT_KASEIKYO_PROTOCOL 1 // Kaseikyo >= 10000 ~150 bytes\r
39#define IRSND_SUPPORT_DENON_PROTOCOL 1 // DENON, Sharp >= 10000 ~200 bytes\r
40\r
41// more protocols, enable here! Enable Remarks F_INTERRUPTS Program Space\r
42#define IRSND_SUPPORT_RC5_PROTOCOL 0 // RC5 >= 10000 ~150 bytes\r
43#define IRSND_SUPPORT_RC6_PROTOCOL 0 // RC6 >= 10000 ~250 bytes\r
44#define IRSND_SUPPORT_RC6A_PROTOCOL 0 // RC6A >= 10000 ~250 bytes\r
45#define IRSND_SUPPORT_JVC_PROTOCOL 0 // JVC >= 10000 ~150 bytes\r
46#define IRSND_SUPPORT_NEC16_PROTOCOL 0 // NEC16 >= 10000 DON'T CHANGE, NOT SUPPORTED YET!\r
47#define IRSND_SUPPORT_NEC42_PROTOCOL 0 // NEC42 >= 10000 DON'T CHANGE, NOT SUPPORTED YET!\r
48#define IRSND_SUPPORT_IR60_PROTOCOL 0 // IR60 (SAB2008) >= 10000 DON'T CHANGE, NOT SUPPORTED YET!\r
49#define IRSND_SUPPORT_GRUNDIG_PROTOCOL 0 // Grundig >= 10000 ~300 bytes\r
50#define IRSND_SUPPORT_SIEMENS_PROTOCOL 0 // Siemens, Gigaset >= 15000 ~150 bytes\r
51#define IRSND_SUPPORT_NOKIA_PROTOCOL 0 // Nokia >= 10000 ~400 bytes\r
52\r
53// exotic protocols, enable here! Enable Remarks F_INTERRUPTS Program Space\r
54#define IRSND_SUPPORT_KATHREIN_PROTOCOL 0 // Kathrein >= 10000 DON'T CHANGE, NOT SUPPORTED YET!\r
55#define IRSND_SUPPORT_NUBERT_PROTOCOL 0 // NUBERT >= 10000 ~100 bytes\r
56#define IRSND_SUPPORT_BANG_OLUFSEN_PROTOCOL 0 // Bang&Olufsen >= 10000 ~250 bytes\r
31c1f035 57#define IRSND_SUPPORT_RECS80_PROTOCOL 0 // RECS80 >= 20000 ~100 bytes\r
58#define IRSND_SUPPORT_RECS80EXT_PROTOCOL 0 // RECS80EXT >= 20000 ~100 bytes\r
f50e01e7 59#define IRSND_SUPPORT_NIKON_PROTOCOL 0 // NIKON >= 10000 ~150 bytes\r
60#define IRSND_SUPPORT_NETBOX_PROTOCOL 0 // Netbox keyboard >= 10000 DON'T CHANGE, NOT SUPPORTED YET!\r
61#define IRSND_SUPPORT_IMON_PROTOCOL 0 // IMON keyboard >= 10000 DON'T CHANGE, NOT SUPPORTED YET!\r
62#define IRSND_SUPPORT_FDC_PROTOCOL 0 // FDC IR keyboard >= 10000 (better 15000) ~150 bytes\r
63#define IRSND_SUPPORT_RCCAR_PROTOCOL 0 // RC CAR >= 10000 (better 15000) ~150 bytes\r
64#define IRSND_SUPPORT_RUWIDO_PROTOCOL 0 // RUWIDO, T-Home >= 15000 DON'T CHANGE, NOT SUPPORTED YET!\r
f50e01e7 65#define IRSND_SUPPORT_LEGO_PROTOCOL 0 // LEGO Power RC >= 20000 ~150 bytes\r
770a1a9d 66\r
46dd89b7 67\r
68/*---------------------------------------------------------------------------------------------------------------------------------------------------\r
69 * Change hardware pin here:\r
70 *---------------------------------------------------------------------------------------------------------------------------------------------------\r
71 */\r
f50e01e7 72#define IRSND_OC2 1 // 0 = OC2, 1 = OC2A, 2 = OC2B, default is 1\r
f2906202 73\r
f50e01e7 74/*---------------------------------------------------------------------------------------------------------------------------------------------------\r
75 * Use Callbacks to indicate output signal or something else\r
76 *---------------------------------------------------------------------------------------------------------------------------------------------------\r
77 */\r
78#define IRSND_USE_CALLBACK 0 // flag: 0 = don't use callbacks, 1 = use callbacks, default is 0\r
f2906202 79\r
f50e01e7 80/*---------------------------------------------------------------------------------------------------------------------------------------------------\r
81 * D O N O T C H A N G E T H E F O L L O W I N G L I N E S !\r
82 *---------------------------------------------------------------------------------------------------------------------------------------------------\r
83 */\r
f2906202 84#if IRSND_SUPPORT_SIEMENS_PROTOCOL == 1 && F_INTERRUPTS < 15000\r
85#warning F_INTERRUPTS too low, SIEMENS protocol disabled (should be at least 15000)\r
86#undef IRSND_SUPPORT_SIEMENS_PROTOCOL\r
87#define IRSND_SUPPORT_SIEMENS_PROTOCOL 0 // DO NOT CHANGE! F_INTERRUPTS too low!\r
88#endif\r
89\r
90#if IRSND_SUPPORT_RECS80_PROTOCOL == 1 && F_INTERRUPTS < 20000\r
91#warning F_INTERRUPTS too low, RECS80 protocol disabled (should be at least 20000)\r
92#undef IRSND_SUPPORT_RECS80_PROTOCOL\r
f50e01e7 93#define IRSND_SUPPORT_RECS80_PROTOCOL 0 // DO NOT CHANGE! F_INTERRUPTS too low!\r
f2906202 94#endif\r
95\r
96#if IRSND_SUPPORT_RECS80EXT_PROTOCOL == 1 && F_INTERRUPTS < 20000\r
97#warning F_INTERRUPTS too low, RECS80EXT protocol disabled (should be at least 20000)\r
98#undef IRSND_SUPPORT_RECS80EXT_PROTOCOL\r
f50e01e7 99#define IRSND_SUPPORT_RECS80EXT_PROTOCOL 0 // DO NOT CHANGE! F_INTERRUPTS too low!\r
100#endif\r
101\r
102#if IRSND_SUPPORT_LEGO_PROTOCOL == 1 && F_INTERRUPTS < 20000\r
103#warning F_INTERRUPTS too low, LEGO protocol disabled (should be at least 20000)\r
104#undef IRSND_SUPPORT_LEGO_PROTOCOL\r
105#define IRSND_SUPPORT_LEGO_PROTOCOL 0 // DO NOT CHANGE! F_INTERRUPTS too low!\r
f2906202 106#endif\r