]> cloudbase.mooo.com Git - irmp.git/blob - irmpconfig.h
Version 1.6.7: bugfix in manchester code detection, if DENON protocol deactivated
[irmp.git] / irmpconfig.h
1 /*---------------------------------------------------------------------------------------------------------------------------------------------------
2 * irmpconfig.h
3 *
4 * Copyright (c) 2010 Frank Meyer - frank(at)fli4l.de
5 *
6 * $Id: irmpconfig.h,v 1.22 2010/06/15 12:02:52 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 #ifndef _IRMPCONFIG_H_
18 #define _IRMPCONFIG_H_
19
20 /*---------------------------------------------------------------------------------------------------------------------------------------------------
21 * Change F_INTERRUPTS if you change the number of interrupts per second, F_INTERRUPTS should be in the range from 10000 to 15000
22 *---------------------------------------------------------------------------------------------------------------------------------------------------
23 */
24 #ifndef F_INTERRUPTS
25 #define F_INTERRUPTS 10000 // interrupts per second, min: 10000, max: 15000
26 #endif
27
28 /*---------------------------------------------------------------------------------------------------------------------------------------------------
29 * Change settings from 1 to 0 if you want to disable one or more decoders.
30 * This saves program space.
31 * 1 enable decoder
32 * 0 disable decoder
33 *---------------------------------------------------------------------------------------------------------------------------------------------------
34 */
35 #define IRMP_SUPPORT_SIRCS_PROTOCOL 1 // flag: support SIRCS uses ~100 bytes
36 #define IRMP_SUPPORT_NEC_PROTOCOL 1 // flag: support NEC + APPLE uses ~250 bytes
37 #define IRMP_SUPPORT_SAMSUNG_PROTOCOL 1 // flag: support Samsung + Samsung32 uses ~250 bytes
38 #define IRMP_SUPPORT_MATSUSHITA_PROTOCOL 1 // flag: support Matsushita uses ~50 bytes
39 #define IRMP_SUPPORT_KASEIKYO_PROTOCOL 1 // flag: support Kaseikyo uses ~50 bytes
40 #define IRMP_SUPPORT_RECS80_PROTOCOL 1 // flag: support RECS80 uses ~50 bytes
41 #define IRMP_SUPPORT_RC5_PROTOCOL 1 // flag: support RC5 uses ~250 bytes
42 #define IRMP_SUPPORT_DENON_PROTOCOL 1 // flag: support DENON uses ~250 bytes
43 #define IRMP_SUPPORT_RC6_PROTOCOL 1 // flag: support RC6 uses ~200 bytes
44 #define IRMP_SUPPORT_RECS80EXT_PROTOCOL 1 // flag: support RECS80EXT uses ~50 bytes
45 #define IRMP_SUPPORT_NUBERT_PROTOCOL 1 // flag: support NUBERT uses ~50 bytes
46 #define IRMP_SUPPORT_BANG_OLUFSEN_PROTOCOL 1 // flag: support Bang & Olufsen uses ~200 bytes
47 #define IRMP_SUPPORT_GRUNDIG_PROTOCOL 1 // flag: support Grundig uses ~150 bytes
48 #define IRMP_SUPPORT_NOKIA_PROTOCOL 1 // flag: support Nokia uses ~150 bytes
49 #define IRMP_SUPPORT_FDC_PROTOCOL 0 // flag: support FDC3402 keyboard uses ~50 bytes
50 #define IRMP_SUPPORT_RCCAR_PROTOCOL 0 // flag: support RC car uses ~150 bytes
51
52 /*---------------------------------------------------------------------------------------------------------------------------------------------------
53 * THE FOLLOWING DECODERS WORK ONLY FOR F_INTERRUPTS > 14500!
54 *---------------------------------------------------------------------------------------------------------------------------------------------------
55 */
56 #if F_INTERRUPTS >= 14500
57 #define IRMP_SUPPORT_SIEMENS_PROTOCOL 1 // flag: support Siemens Gigaset uses ~150 bytes
58 #else
59 #define IRMP_SUPPORT_SIEMENS_PROTOCOL 0 // DO NOT CHANGE! F_INTERRUPTS too low!
60 #endif
61
62 #if IRMP_SUPPORT_FDC_PROTOCOL == 1 && IRMP_SUPPORT_RC5_PROTOCOL == 1
63 #error Protocols RC5 and FDC may not be enabled both at the same time. Please disable one of them in irmpconfig.h.
64 #endif
65
66 #if IRMP_SUPPORT_RCCAR_PROTOCOL == 1 && IRMP_SUPPORT_RC5_PROTOCOL == 1
67 #error Protocols RC5 and RCCAR may not be enabled both at the same time. Please disable one of them in irmpconfig.h.
68 #endif
69
70 /*---------------------------------------------------------------------------------------------------------------------------------------------------
71 * Change hardware pin here:
72 *---------------------------------------------------------------------------------------------------------------------------------------------------
73 */
74 #ifdef PIC_CCS_COMPILER // PIC CCS Compiler:
75
76 #define IRMP_PIN PIN_B4 // use PB4 as IR input on PIC
77
78 #else // AVR:
79
80 #define IRMP_PORT PORTB
81 #define IRMP_DDR DDRB
82 #define IRMP_PIN PINB
83 #define IRMP_BIT 6 // use PB6 as IR input on AVR
84
85 #define input(x) ((x) & (1 << IRMP_BIT))
86 #endif
87
88 /*---------------------------------------------------------------------------------------------------------------------------------------------------
89 * Set IRMP_LOGGING to 1 if want to log data to UART with 9600Bd
90 *---------------------------------------------------------------------------------------------------------------------------------------------------
91 */
92 #ifndef IRMP_LOGGING
93 #define IRMP_LOGGING 0 // 1: log IR signal (scan), 0: do not (default)
94 #endif
95
96 #endif /* _WC_IRMPCONFIG_H_ */