]> cloudbase.mooo.com Git - irmp.git/blob - irmpconfig.h
Version 1.6.0: added FDC protocol, corrected DENON timing
[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.11 2010/06/08 23:34:14 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
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
50 /*---------------------------------------------------------------------------------------------------------------------------------------------------
51 * THE FOLLOWING DECODERS WORK ONLY FOR F_INTERRUPTS > 14500!
52 *---------------------------------------------------------------------------------------------------------------------------------------------------
53 */
54 #if F_INTERRUPTS >= 14500
55 #define IRMP_SUPPORT_SIEMENS_PROTOCOL 1 // flag: support Siemens Gigaset uses ~150 bytes
56 #define IRMP_SUPPORT_FDC_PROTOCOL 1 // flag: support FDC keyboard uses ~150 bytes
57 #else
58 #define IRMP_SUPPORT_SIEMENS_PROTOCOL 0 // DO NOT CHANGE! F_INTERRUPTS too low!
59 #define IRMP_SUPPORT_FDC_PROTOCOL 0 // DO NOT CHANGE! F_INTERRUPTS too low!
60 #endif
61
62 /*---------------------------------------------------------------------------------------------------------------------------------------------------
63 * Change hardware pin here:
64 *---------------------------------------------------------------------------------------------------------------------------------------------------
65 */
66 #ifdef PIC_CCS_COMPILER // PIC CCS Compiler:
67
68 #define IRMP_PIN PIN_B4 // use PB4 as IR input on PIC
69
70 #else // AVR:
71
72 #define IRMP_PORT PORTB
73 #define IRMP_DDR DDRB
74 #define IRMP_PIN PINB
75 #define IRMP_BIT 6 // use PB6 as IR input on AVR
76
77 #define input(x) ((x) & (1 << IRMP_BIT))
78 #endif
79
80 /*---------------------------------------------------------------------------------------------------------------------------------------------------
81 * Set IRMP_LOGGING to 1 if want to log data to UART with 9600Bd
82 *---------------------------------------------------------------------------------------------------------------------------------------------------
83 */
84 #define IRMP_LOGGING 0 // 1: log IR signal (scan), 0: do not (default)
85
86 #endif /* _WC_IRMPCONFIG_H_ */