]> cloudbase.mooo.com Git - irmp.git/blob - irsndconfig.h
version 2.0.0-pre7: added support for ATtiny84, added ISR in main.c, corrected timer1...
[irmp.git] / irsndconfig.h
1 /*---------------------------------------------------------------------------------------------------------------------------------------------------
2 * irsndconfig.h
3 *
4 * Copyright (c) 2010-2011 Frank Meyer - frank(at)fli4l.de
5 *
6 * $Id: irsndconfig.h,v 1.26 2011/09/11 13:17:38 fm Exp $
7 *
8 * ATMEGA88 @ 8 MHz
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *---------------------------------------------------------------------------------------------------------------------------------------------------
15 */
16
17 /*---------------------------------------------------------------------------------------------------------------------------------------------------
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
19 *---------------------------------------------------------------------------------------------------------------------------------------------------
20 */
21 #ifndef F_INTERRUPTS
22 #define F_INTERRUPTS 15000 // interrupts per second
23 #endif
24
25 /*---------------------------------------------------------------------------------------------------------------------------------------------------
26 * Change settings from 1 to 0 if you want to disable one or more encoders.
27 * This saves program space.
28 * 1 enable decoder
29 * 0 disable decoder
30 *---------------------------------------------------------------------------------------------------------------------------------------------------
31 */
32
33 // typical protocols, disable here! Enable Remarks F_INTERRUPTS Program Space
34 #define IRSND_SUPPORT_SIRCS_PROTOCOL 1 // Sony SIRCS >= 10000 ~150 bytes
35 #define IRSND_SUPPORT_NEC_PROTOCOL 1 // NEC + APPLE >= 10000 ~100 bytes
36 #define IRSND_SUPPORT_SAMSUNG_PROTOCOL 1 // Samsung + Samsung32 >= 10000 ~300 bytes
37 #define IRSND_SUPPORT_MATSUSHITA_PROTOCOL 1 // Matsushita >= 10000 ~200 bytes
38 #define IRSND_SUPPORT_KASEIKYO_PROTOCOL 1 // Kaseikyo >= 10000 ~150 bytes
39 #define IRSND_SUPPORT_DENON_PROTOCOL 1 // DENON, Sharp >= 10000 ~200 bytes
40
41 // more protocols, enable here! Enable Remarks F_INTERRUPTS Program Space
42 #define IRSND_SUPPORT_RC5_PROTOCOL 0 // RC5 >= 10000 ~150 bytes
43 #define IRSND_SUPPORT_RC6_PROTOCOL 0 // RC6 >= 10000 ~250 bytes
44 #define IRSND_SUPPORT_RC6A_PROTOCOL 0 // RC6A >= 10000 ~250 bytes
45 #define IRSND_SUPPORT_JVC_PROTOCOL 0 // JVC >= 10000 ~150 bytes
46 #define IRSND_SUPPORT_NEC16_PROTOCOL 0 // NEC16 >= 10000 ~150 bytes
47 #define IRSND_SUPPORT_NEC42_PROTOCOL 0 // NEC42 >= 10000 ~150 bytes
48 #define IRSND_SUPPORT_IR60_PROTOCOL 0 // IR60 (SAB2008) >= 10000 DON'T CHANGE, NOT SUPPORTED YET!
49 #define IRSND_SUPPORT_GRUNDIG_PROTOCOL 0 // Grundig >= 10000 ~300 bytes
50 #define IRSND_SUPPORT_SIEMENS_PROTOCOL 0 // Siemens, Gigaset >= 15000 ~150 bytes
51 #define IRSND_SUPPORT_NOKIA_PROTOCOL 0 // Nokia >= 10000 ~400 bytes
52
53 // exotic protocols, enable here! Enable Remarks F_INTERRUPTS Program Space
54 #define IRSND_SUPPORT_KATHREIN_PROTOCOL 0 // Kathrein >= 10000 DON'T CHANGE, NOT SUPPORTED YET!
55 #define IRSND_SUPPORT_NUBERT_PROTOCOL 0 // NUBERT >= 10000 ~100 bytes
56 #define IRSND_SUPPORT_BANG_OLUFSEN_PROTOCOL 0 // Bang&Olufsen >= 10000 ~250 bytes
57 #define IRSND_SUPPORT_RECS80_PROTOCOL 0 // RECS80 >= 20000 ~100 bytes
58 #define IRSND_SUPPORT_RECS80EXT_PROTOCOL 0 // RECS80EXT >= 20000 ~100 bytes
59 #define IRSND_SUPPORT_THOMSON_PROTOCOL 0 // Thomson >= 10000 ~250 bytes
60 #define IRSND_SUPPORT_NIKON_PROTOCOL 0 // NIKON >= 10000 ~150 bytes
61 #define IRSND_SUPPORT_NETBOX_PROTOCOL 0 // Netbox keyboard >= 10000 DON'T CHANGE, NOT SUPPORTED YET!
62 #define IRSND_SUPPORT_IMON_PROTOCOL 0 // IMON keyboard >= 10000 DON'T CHANGE, NOT SUPPORTED YET!
63 #define IRSND_SUPPORT_FDC_PROTOCOL 0 // FDC IR keyboard >= 10000 (better 15000) ~150 bytes
64 #define IRSND_SUPPORT_RCCAR_PROTOCOL 0 // RC CAR >= 10000 (better 15000) ~150 bytes
65 #define IRSND_SUPPORT_RUWIDO_PROTOCOL 0 // RUWIDO, T-Home >= 15000 DON'T CHANGE, NOT SUPPORTED YET!
66 #define IRSND_SUPPORT_LEGO_PROTOCOL 0 // LEGO Power RC >= 20000 ~150 bytes
67
68
69 /*---------------------------------------------------------------------------------------------------------------------------------------------------
70 * DO NOT CHANGE:
71 *---------------------------------------------------------------------------------------------------------------------------------------------------
72 */
73 #define IRSND_OC2 0 // OC2
74 #define IRSND_OC2A 1 // OC2A
75 #define IRSND_OC2B 2 // OC2B
76 #define IRSND_OC0 3 // OC0
77 #define IRSND_OC0A 4 // OC0A
78 #define IRSND_OC0B 5 // OC0B
79
80 /*---------------------------------------------------------------------------------------------------------------------------------------------------
81 * Change hardware pin here: IRSND_OC2 = OC2 on ATmegas supporting OC2, e.g. ATmega8
82 * IRSND_OC2A = OC2A on ATmegas supporting OC2A, e.g. ATmega88
83 * IRSND_OC2B = OC2B on ATmegas supporting OC2B, e.g. ATmega88
84 * IRSND_OC0 = OC0 on ATmegas supporting OC0, e.g. ATmega162
85 * IRSND_OC0A = OC0A on ATmegas/ATtinys supporting OC0A, e.g. ATtiny84, ATtiny85
86 * IRSND_OC0B = OC0B on ATmegas/ATtinys supporting OC0B, e.g. ATtiny84, ATtiny85
87 *---------------------------------------------------------------------------------------------------------------------------------------------------
88 */
89 #define IRSND_OCx IRSND_OC2B // use OC2B
90
91 /*---------------------------------------------------------------------------------------------------------------------------------------------------
92 * Use Callbacks to indicate output signal or something else
93 *---------------------------------------------------------------------------------------------------------------------------------------------------
94 */
95 #define IRSND_USE_CALLBACK 0 // flag: 0 = don't use callbacks, 1 = use callbacks, default is 0
96
97 /*---------------------------------------------------------------------------------------------------------------------------------------------------
98 * 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 !
99 *---------------------------------------------------------------------------------------------------------------------------------------------------
100 */
101 #if IRSND_SUPPORT_SIEMENS_PROTOCOL == 1 && F_INTERRUPTS < 15000
102 #warning F_INTERRUPTS too low, SIEMENS protocol disabled (should be at least 15000)
103 #undef IRSND_SUPPORT_SIEMENS_PROTOCOL
104 #define IRSND_SUPPORT_SIEMENS_PROTOCOL 0 // DO NOT CHANGE! F_INTERRUPTS too low!
105 #endif
106
107 #if IRSND_SUPPORT_RECS80_PROTOCOL == 1 && F_INTERRUPTS < 20000
108 #warning F_INTERRUPTS too low, RECS80 protocol disabled (should be at least 20000)
109 #undef IRSND_SUPPORT_RECS80_PROTOCOL
110 #define IRSND_SUPPORT_RECS80_PROTOCOL 0 // DO NOT CHANGE! F_INTERRUPTS too low!
111 #endif
112
113 #if IRSND_SUPPORT_RECS80EXT_PROTOCOL == 1 && F_INTERRUPTS < 20000
114 #warning F_INTERRUPTS too low, RECS80EXT protocol disabled (should be at least 20000)
115 #undef IRSND_SUPPORT_RECS80EXT_PROTOCOL
116 #define IRSND_SUPPORT_RECS80EXT_PROTOCOL 0 // DO NOT CHANGE! F_INTERRUPTS too low!
117 #endif
118
119 #if IRSND_SUPPORT_LEGO_PROTOCOL == 1 && F_INTERRUPTS < 20000
120 #warning F_INTERRUPTS too low, LEGO protocol disabled (should be at least 20000)
121 #undef IRSND_SUPPORT_LEGO_PROTOCOL
122 #define IRSND_SUPPORT_LEGO_PROTOCOL 0 // DO NOT CHANGE! F_INTERRUPTS too low!
123 #endif