X-Git-Url: http://cloudbase.mooo.com/gitweb/irmp.git/blobdiff_plain/504d9df94cc82995d3da1a1b13956e13aae0e1f2..48664931c4d9371a7be6735227011e54954f79cc:/irmpconfig.h diff --git a/irmpconfig.h b/irmpconfig.h index bf0ad6a..b522ff3 100644 --- a/irmpconfig.h +++ b/irmpconfig.h @@ -3,7 +3,7 @@ * * Copyright (c) 2010 Frank Meyer - frank(at)fli4l.de * - * $Id: irmpconfig.h,v 1.2 2010/04/12 10:15:40 fm Exp $ + * $Id: irmpconfig.h,v 1.21 2010/06/14 22:01:49 fm Exp $ * * ATMEGA88 @ 8 MHz * @@ -21,7 +21,9 @@ * Change F_INTERRUPTS if you change the number of interrupts per second, F_INTERRUPTS should be in the range from 10000 to 15000 *--------------------------------------------------------------------------------------------------------------------------------------------------- */ -#define F_INTERRUPTS 10000 // interrupts per second +#ifndef F_INTERRUPTS +#define F_INTERRUPTS 10000 // interrupts per second, min: 10000, max: 15000 +#endif /*--------------------------------------------------------------------------------------------------------------------------------------------------- * Change settings from 1 to 0 if you want to disable one or more decoders. @@ -30,18 +32,40 @@ * 0 disable decoder *--------------------------------------------------------------------------------------------------------------------------------------------------- */ -#define IRMP_SUPPORT_SIRCS_PROTOCOL 1 // flag: support SIRCS uses ~100 bytes -#define IRMP_SUPPORT_NEC_PROTOCOL 1 // flag: support NEC + APPLE uses ~250 bytes -#define IRMP_SUPPORT_SAMSUNG_PROTOCOL 1 // flag: support Samsung + Samsung32 uses ~250 bytes -#define IRMP_SUPPORT_MATSUSHITA_PROTOCOL 1 // flag: support Matsushita uses ~50 bytes -#define IRMP_SUPPORT_KASEIKYO_PROTOCOL 1 // flag: support Kaseikyo uses ~50 bytes -#define IRMP_SUPPORT_RECS80_PROTOCOL 1 // flag: support RECS80 uses ~50 bytes -#define IRMP_SUPPORT_RC5_PROTOCOL 1 // flag: support RC5 uses ~250 bytes -#define IRMP_SUPPORT_DENON_PROTOCOL 1 // flag: support DENON uses ~250 bytes -#define IRMP_SUPPORT_RC6_PROTOCOL 1 // flag: support RC6 uses ~200 bytes -#define IRMP_SUPPORT_RECS80EXT_PROTOCOL 1 // flag: support RECS80EXT uses ~50 bytes -#define IRMP_SUPPORT_NUBERT_PROTOCOL 1 // flag: support NUBERT uses ~50 bytes -#define IRMP_SUPPORT_BANG_OLUFSEN_PROTOCOL 1 // flag: support Bang & Olufsen uses ~200 bytes +#define IRMP_SUPPORT_SIRCS_PROTOCOL 1 // flag: support SIRCS uses ~100 bytes +#define IRMP_SUPPORT_NEC_PROTOCOL 1 // flag: support NEC + APPLE uses ~250 bytes +#define IRMP_SUPPORT_SAMSUNG_PROTOCOL 1 // flag: support Samsung + Samsung32 uses ~250 bytes +#define IRMP_SUPPORT_MATSUSHITA_PROTOCOL 1 // flag: support Matsushita uses ~50 bytes +#define IRMP_SUPPORT_KASEIKYO_PROTOCOL 1 // flag: support Kaseikyo uses ~50 bytes +#define IRMP_SUPPORT_RECS80_PROTOCOL 1 // flag: support RECS80 uses ~50 bytes +#define IRMP_SUPPORT_RC5_PROTOCOL 1 // flag: support RC5 uses ~250 bytes +#define IRMP_SUPPORT_DENON_PROTOCOL 1 // flag: support DENON uses ~250 bytes +#define IRMP_SUPPORT_RC6_PROTOCOL 1 // flag: support RC6 uses ~200 bytes +#define IRMP_SUPPORT_RECS80EXT_PROTOCOL 1 // flag: support RECS80EXT uses ~50 bytes +#define IRMP_SUPPORT_NUBERT_PROTOCOL 1 // flag: support NUBERT uses ~50 bytes +#define IRMP_SUPPORT_BANG_OLUFSEN_PROTOCOL 1 // flag: support Bang & Olufsen uses ~200 bytes +#define IRMP_SUPPORT_GRUNDIG_PROTOCOL 1 // flag: support Grundig uses ~150 bytes +#define IRMP_SUPPORT_NOKIA_PROTOCOL 1 // flag: support Nokia uses ~150 bytes +#define IRMP_SUPPORT_FDC_PROTOCOL 0 // flag: support FDC3402 keyboard uses ~100 bytes +#define IRMP_SUPPORT_RCCAR_PROTOCOL 0 // flag: support RC car uses ~150 bytes + +/*--------------------------------------------------------------------------------------------------------------------------------------------------- + * THE FOLLOWING DECODERS WORK ONLY FOR F_INTERRUPTS > 14500! + *--------------------------------------------------------------------------------------------------------------------------------------------------- + */ +#if F_INTERRUPTS >= 14500 +#define IRMP_SUPPORT_SIEMENS_PROTOCOL 1 // flag: support Siemens Gigaset uses ~150 bytes +#else +#define IRMP_SUPPORT_SIEMENS_PROTOCOL 0 // DO NOT CHANGE! F_INTERRUPTS too low! +#endif + +#if IRMP_SUPPORT_FDC_PROTOCOL == 1 && IRMP_SUPPORT_RC5_PROTOCOL == 1 +#error Protocols RC5 and FDC may not be enabled both at the same time. Please disable one of them in irmpconfig.h. +#endif + +#if IRMP_SUPPORT_RCCAR_PROTOCOL == 1 && IRMP_SUPPORT_RC5_PROTOCOL == 1 +#error Protocols RC5 and RCCAR may not be enabled both at the same time. Please disable one of them in irmpconfig.h. +#endif /*--------------------------------------------------------------------------------------------------------------------------------------------------- * Change hardware pin here: @@ -65,6 +89,8 @@ * Set IRMP_LOGGING to 1 if want to log data to UART with 9600Bd *--------------------------------------------------------------------------------------------------------------------------------------------------- */ -#define IRMP_LOGGING 0 // 1: log IR signal (scan), 0: do not (default) +#ifndef IRMP_LOGGING +#define IRMP_LOGGING 0 // 1: log IR signal (scan), 0: do not (default) +#endif #endif /* _WC_IRMPCONFIG_H_ */