X-Git-Url: http://cloudbase.mooo.com/gitweb/irmp.git/blobdiff_plain/df24bb50ab88c97e3431d6dad6c04ed79e3794c7..refs/heads/master:/irmpconfig.h diff --git a/irmpconfig.h b/irmpconfig.h index 1b5b024..245129f 100644 --- a/irmpconfig.h +++ b/irmpconfig.h @@ -3,10 +3,10 @@ * * DO NOT INCLUDE THIS FILE, WILL BE INCLUDED BY IRMP.H! * - * Copyright (c) 2009-2015 Frank Meyer - frank(at)fli4l.de + * Copyright (c) 2009-2016 Frank Meyer - frank(at)fli4l.de * Extensions for PIC 12F1820 W.Strobl 2014-07-20 * - * $Id: irmpconfig.h,v 1.145 2015/11/18 08:27:50 fm Exp $ + * $Id: irmpconfig.h,v 1.152 2017/02/17 09:13:06 fm Exp $ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -97,6 +97,9 @@ #define IRMP_SUPPORT_ACP24_PROTOCOL 0 // ACP24 >= 10000 ~250 bytes #define IRMP_SUPPORT_TECHNICS_PROTOCOL 0 // TECHNICS >= 10000 ~250 bytes #define IRMP_SUPPORT_PANASONIC_PROTOCOL 0 // PANASONIC Beamer >= 10000 ~250 bytes +#define IRMP_SUPPORT_MITSU_HEAVY_PROTOCOL 0 // Mitsubishi Aircond >= 10000 ~250 bytes +#define IRMP_SUPPORT_VINCENT_PROTOCOL 0 // VINCENT >= 10000 ~250 bytes +#define IRMP_SUPPORT_SAMSUNGAH_PROTOCOL 1 // SAMSUNG AH >= 10000 ~250 bytes #define IRMP_SUPPORT_RADIO1_PROTOCOL 0 // RADIO, e.g. TEVION >= 10000 ~250 bytes (experimental) /*--------------------------------------------------------------------------------------------------------------------------------------------------- @@ -153,7 +156,7 @@ * Change hardware pin here for ESP8266 *--------------------------------------------------------------------------------------------------------------------------------------------------- */ -#elif defined (__xtensa__) +#elif defined (__xtensa__) # define IRMP_BIT_NUMBER 12 // use GPIO12 (Pin 7 UEXT) on ESP8266-EVB evaluation board /*--------------------------------------------------------------------------------------------------------------------------------------------------- @@ -163,6 +166,14 @@ #elif defined (TEENSY_ARM_CORTEX_M4) # define IRMP_PIN 1 // use Digital pin 1 as IR input on Teensy +/*--------------------------------------------------------------------------------------------------------------------------------------------------- + * Change hardware pin here for MBED + *--------------------------------------------------------------------------------------------------------------------------------------------------- + */ +#elif defined(__MBED__) +# define IRMP_PIN P0_22 // use P1_27 on LPC1347 +# define IRMP_PINMODE PullUp // hardware dependent + /*--------------------------------------------------------------------------------------------------------------------------------------------------- * Handling of unknown target system: DON'T CHANGE *---------------------------------------------------------------------------------------------------------------------------------------------------