]> cloudbase.mooo.com Git - irmp.git/blob - irmpconfig.h
added BANG_OLUFSEN protocol
[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.3 2010/04/12 13:26:46 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
46 /*---------------------------------------------------------------------------------------------------------------------------------------------------
47 * Change hardware pin here:
48 *---------------------------------------------------------------------------------------------------------------------------------------------------
49 */
50 #ifdef PIC_CCS_COMPILER // PIC CCS Compiler:
51
52 #define IRMP_PIN PIN_B4 // use PB4 as IR input on PIC
53
54 #else // AVR:
55
56 #define IRMP_PORT PORTB
57 #define IRMP_DDR DDRB
58 #define IRMP_PIN PINB
59 #define IRMP_BIT 6 // use PB6 as IR input on AVR
60
61 #define input(x) ((x) & (1 << IRMP_BIT))
62 #endif
63
64 /*---------------------------------------------------------------------------------------------------------------------------------------------------
65 * Set IRMP_LOGGING to 1 if want to log data to UART with 9600Bd
66 *---------------------------------------------------------------------------------------------------------------------------------------------------
67 */
68 #define IRMP_LOGGING 0 // 1: log IR signal (scan), 0: do not (default)
69
70 #endif /* _WC_IRMPCONFIG_H_ */