]> cloudbase.mooo.com Git - irmp.git/blame - irsndconfig.h
Version 1.8.0: added JVC in irsnd, fitted APPLE protocol to IRMP 1.7.3
[irmp.git] / irsndconfig.h
CommitLineData
46dd89b7 1/*---------------------------------------------------------------------------------------------------------------------------------------------------\r
2 * irsndconfig.h\r
3 *\r
4 * Copyright (c) 2010 Frank Meyer - frank(at)fli4l.de\r
5 *\r
c7a47e89 6 * $Id: irsndconfig.h,v 1.12 2010/08/31 15:22:24 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
18 * Change F_INTERRUPTS if you change the number of interrupts per second, F_INTERRUPTS should be in the range from 10000 to 15000\r
19 *---------------------------------------------------------------------------------------------------------------------------------------------------\r
20 */\r
21#ifndef F_INTERRUPTS\r
22#define F_INTERRUPTS 10000 // interrupts per second\r
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
f2906202 32// Protocol Enable Remarks F_INTERRUPTS Program Space\r
33#define IRSND_SUPPORT_SIRCS_PROTOCOL 1 // Sony SIRCS >= 10000 uses ~150 bytes\r
34#define IRSND_SUPPORT_NEC_PROTOCOL 1 // NEC + APPLE >= 10000 uses ~100 bytes\r
35#define IRSND_SUPPORT_SAMSUNG_PROTOCOL 1 // Samsung + Samsung32 >= 10000 uses ~300 bytes\r
770a1a9d 36#define IRSND_SUPPORT_MATSUSHITA_PROTOCOL 1 // Matsushita >= 10000 uses ~200 bytes\r
37#define IRSND_SUPPORT_KASEIKYO_PROTOCOL 1 // Kaseikyo >= 10000 uses ~150 bytes\r
f2906202 38#define IRSND_SUPPORT_RC5_PROTOCOL 1 // RC5 >= 10000 uses ~150 bytes\r
39#define IRSND_SUPPORT_DENON_PROTOCOL 1 // DENON >= 10000 uses ~200 bytes\r
c7a47e89 40#define IRSND_SUPPORT_JVC_PROTOCOL 1 // JVC >= 10000 uses ~150 bytes\r
41#define IRSND_SUPPORT_RC6_PROTOCOL 0 // RC6 NOT SUPPORTED YET! DON'T CHANGE!\r
f2906202 42#define IRSND_SUPPORT_NUBERT_PROTOCOL 1 // NUBERT >= 10000 uses ~100 bytes\r
43#define IRSND_SUPPORT_BANG_OLUFSEN_PROTOCOL 1 // Bang&Olufsen >= 10000 uses ~250 bytes\r
44#define IRSND_SUPPORT_GRUNDIG_PROTOCOL 1 // Grundig >= 10000 uses ~300 bytes\r
45#define IRSND_SUPPORT_NOKIA_PROTOCOL 1 // Nokia >= 10000 uses ~400 bytes\r
46#define IRSND_SUPPORT_FDC_PROTOCOL 1 // FDC IR keyboard >= 10000 (better 15000) uses ~150 bytes\r
47#define IRSND_SUPPORT_RCCAR_PROTOCOL 1 // RC CAR >= 10000 (better 15000) uses ~150 bytes\r
48#define IRSND_SUPPORT_SIEMENS_PROTOCOL 0 // Siemens, Gigaset >= 15000 uses ~150 bytes\r
49#define IRSND_SUPPORT_RECS80_PROTOCOL 0 // RECS80 >= 20000 uses ~100 bytes\r
50#define IRSND_SUPPORT_RECS80EXT_PROTOCOL 0 // RECS80EXT >= 20000 uses ~100 bytes\r
770a1a9d 51\r
46dd89b7 52\r
53/*---------------------------------------------------------------------------------------------------------------------------------------------------\r
54 * Change hardware pin here:\r
55 *---------------------------------------------------------------------------------------------------------------------------------------------------\r
56 */\r
57#if defined (__AVR_ATmega32__) || defined (__AVR_ATmega644P__)\r
c7c9a4a1 58#define IRSND_PORT PORTD // port D\r
59#define IRSND_DDR DDRD // ddr D\r
60#define IRSND_BIT 7 // OC2A\r
46dd89b7 61#else\r
c7c9a4a1 62#define IRSND_PORT PORTB // port B\r
63#define IRSND_DDR DDRB // ddr B\r
64#define IRSND_BIT 3 // OC2A\r
46dd89b7 65#endif // __AVR...\r
f2906202 66\r
67\r
68#if IRSND_SUPPORT_SIEMENS_PROTOCOL == 1 && F_INTERRUPTS < 15000\r
69#warning F_INTERRUPTS too low, SIEMENS protocol disabled (should be at least 15000)\r
70#undef IRSND_SUPPORT_SIEMENS_PROTOCOL\r
71#define IRSND_SUPPORT_SIEMENS_PROTOCOL 0 // DO NOT CHANGE! F_INTERRUPTS too low!\r
72#endif\r
73\r
74#if IRSND_SUPPORT_RECS80_PROTOCOL == 1 && F_INTERRUPTS < 20000\r
75#warning F_INTERRUPTS too low, RECS80 protocol disabled (should be at least 20000)\r
76#undef IRSND_SUPPORT_RECS80_PROTOCOL\r
77#define IRSND_SUPPORT_RECS80_PROTOCOL 0\r
78#endif\r
79\r
80#if IRSND_SUPPORT_RECS80EXT_PROTOCOL == 1 && F_INTERRUPTS < 20000\r
81#warning F_INTERRUPTS too low, RECS80EXT protocol disabled (should be at least 20000)\r
82#undef IRSND_SUPPORT_RECS80EXT_PROTOCOL\r
83#define IRSND_SUPPORT_RECS80EXT_PROTOCOL 0\r
84#endif\r