]> cloudbase.mooo.com Git - irmp.git/blob - irmpconfig.h
Version 1.5.0: added Siemens Gigaset protocol, added frame repeat for irsnd
[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.8 2010/05/28 11:23:19 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 #define F_INTERRUPTS 10000 // interrupts per second
25
26 /*---------------------------------------------------------------------------------------------------------------------------------------------------
27 * Change settings from 1 to 0 if you want to disable one or more decoders.
28 * This saves program space.
29 * 1 enable decoder
30 * 0 disable decoder
31 *---------------------------------------------------------------------------------------------------------------------------------------------------
32 */
33 #define IRMP_SUPPORT_SIRCS_PROTOCOL 1 // flag: support SIRCS uses ~100 bytes
34 #define IRMP_SUPPORT_NEC_PROTOCOL 1 // flag: support NEC + APPLE uses ~250 bytes
35 #define IRMP_SUPPORT_SAMSUNG_PROTOCOL 1 // flag: support Samsung + Samsung32 uses ~250 bytes
36 #define IRMP_SUPPORT_MATSUSHITA_PROTOCOL 1 // flag: support Matsushita uses ~50 bytes
37 #define IRMP_SUPPORT_KASEIKYO_PROTOCOL 1 // flag: support Kaseikyo uses ~50 bytes
38 #define IRMP_SUPPORT_RECS80_PROTOCOL 1 // flag: support RECS80 uses ~50 bytes
39 #define IRMP_SUPPORT_RC5_PROTOCOL 1 // flag: support RC5 uses ~250 bytes
40 #define IRMP_SUPPORT_DENON_PROTOCOL 1 // flag: support DENON uses ~250 bytes
41 #define IRMP_SUPPORT_RC6_PROTOCOL 1 // flag: support RC6 uses ~200 bytes
42 #define IRMP_SUPPORT_RECS80EXT_PROTOCOL 1 // flag: support RECS80EXT uses ~50 bytes
43 #define IRMP_SUPPORT_NUBERT_PROTOCOL 1 // flag: support NUBERT uses ~50 bytes
44 #define IRMP_SUPPORT_BANG_OLUFSEN_PROTOCOL 1 // flag: support Bang & Olufsen uses ~200 bytes
45 #define IRMP_SUPPORT_GRUNDIG_PROTOCOL 1 // flag: support Grundig uses ~150 bytes
46 #define IRMP_SUPPORT_NOKIA_PROTOCOL 1 // flag: support Nokia uses ~150 bytes
47 #define IRMP_SUPPORT_SIEMENS_PROTOCOL 1 // flag: support Siemens Gigaset uses ~150 bytes
48
49 /*---------------------------------------------------------------------------------------------------------------------------------------------------
50 * Change hardware pin here:
51 *---------------------------------------------------------------------------------------------------------------------------------------------------
52 */
53 #ifdef PIC_CCS_COMPILER // PIC CCS Compiler:
54
55 #define IRMP_PIN PIN_B4 // use PB4 as IR input on PIC
56
57 #else // AVR:
58
59 #define IRMP_PORT PORTB
60 #define IRMP_DDR DDRB
61 #define IRMP_PIN PINB
62 #define IRMP_BIT 6 // use PB6 as IR input on AVR
63
64 #define input(x) ((x) & (1 << IRMP_BIT))
65 #endif
66
67 /*---------------------------------------------------------------------------------------------------------------------------------------------------
68 * Set IRMP_LOGGING to 1 if want to log data to UART with 9600Bd
69 *---------------------------------------------------------------------------------------------------------------------------------------------------
70 */
71 #define IRMP_LOGGING 0 // 1: log IR signal (scan), 0: do not (default)
72
73 #endif /* _WC_IRMPCONFIG_H_ */