]> cloudbase.mooo.com Git - irmp.git/blobdiff - irmp.h
Version 2.9.7: added port to to ESP8266 and TEENSY, added PANASONIC protocol, added...
[irmp.git] / irmp.h
diff --git a/irmp.h b/irmp.h
index c7de84415385c580b1d6d3ad47cb6dea897aa387..eec62de861af45993a6493c7c6b53df638617a05 100644 (file)
--- a/irmp.h
+++ b/irmp.h
@@ -1,9 +1,9 @@
 /*---------------------------------------------------------------------------------------------------------------------------------------------------\r
  * irmp.h\r
  *\r
- * Copyright (c) 2009-2014 Frank Meyer - frank(at)fli4l.de\r
+ * Copyright (c) 2009-2015 Frank Meyer - frank(at)fli4l.de\r
  *\r
- * $Id: irmp.h,v 1.90 2015/01/19 10:54:37 fm Exp $\r
+ * $Id: irmp.h,v 1.100 2015/11/17 13:51:45 fm Exp $\r
  *\r
  * This program is free software; you can redistribute it and/or modify\r
  * it under the terms of the GNU General Public License as published by\r
 #  include "irmpconfig.h"\r
 #endif\r
 \r
-#if defined (ATMEL_AVR)\r
+#if defined (__AVR_XMEGA__)\r
+#  define _CONCAT(a,b)                          a##b\r
+#  define CONCAT(a,b)                           _CONCAT(a,b)\r
+#  define IRMP_PORT_PRE                         CONCAT(PORT, IRMP_PORT_LETTER)\r
+#  define IRMP_DDR_PRE                          CONCAT(PORT, IRMP_PORT_LETTER)\r
+#  define IRMP_PIN_PRE                          CONCAT(PORT, IRMP_PORT_LETTER)\r
+#  define IRMP_PORT                             IRMP_PORT_PRE.OUT\r
+#  define IRMP_DDR                              IRMP_DDR_PRE.DIR\r
+#  define IRMP_PIN                              IRMP_PIN_PRE.IN\r
+#  define IRMP_BIT                              IRMP_BIT_NUMBER\r
+#  define input(x)                              ((x) & (1 << IRMP_BIT))\r
+\r
+#elif defined (ATMEL_AVR)\r
 #  define _CONCAT(a,b)                          a##b\r
 #  define CONCAT(a,b)                           _CONCAT(a,b)\r
 #  define IRMP_PORT                             CONCAT(PORT, IRMP_PORT_LETTER)\r
 #  define IRMP_PIN                              CONCAT(PIN, IRMP_PORT_LETTER)\r
 #  define IRMP_BIT                              IRMP_BIT_NUMBER\r
 #  define input(x)                              ((x) & (1 << IRMP_BIT))\r
-#elif defined (PIC_C18)\r
-#  define input(x)                              (x)\r
-#elif defined (PIC_CCS)\r
+\r
+#elif defined (PIC_C18) || defined (PIC_CCS)\r
 #  define input(x)                              (x)\r
+\r
 #elif defined (ARM_STM32)\r
 #  define _CONCAT(a,b)                          a##b\r
 #  define CONCAT(a,b)                           _CONCAT(a,b)\r
@@ -50,6 +62,7 @@
 #  ifndef USE_STDPERIPH_DRIVER\r
 #    warning The STM32 port of IRMP uses the ST standard peripheral drivers which are not enabled in your build configuration.\r
 #  endif\r
+\r
 #elif defined (STELLARIS_ARM_CORTEX_M4)\r
 #  define _CONCAT(a,b)                          a##b\r
 #  define CONCAT(a,b)                           _CONCAT(a,b)\r
 #  define IRMP_PIN                              IRMP_PORT_PIN\r
 #  define input(x)                              ((uint8_t)(ROM_GPIOPinRead(IRMP_PORT_BASE, IRMP_PORT_PIN)))\r
 #  define sei()                                 IntMasterEnable()\r
+\r
+#elif defined(__SDCC_stm8)\r
+#  define _CONCAT(a,b)                          a##b\r
+#  define CONCAT(a,b)                           _CONCAT(a,b)\r
+#  define IRMP_GPIO_STRUCT                      CONCAT(GPIO, IRMP_PORT_LETTER)\r
+#  define IRMP_BIT                              IRMP_BIT_NUMBER\r
+#  define input(x)                              ((x) & (1 << IRMP_BIT))\r
+\r
+#elif defined (TEENSY_ARM_CORTEX_M4)\r
+#  define input(x)                              ((uint8_t)(digitalReadFast(x)))\r
+\r
+#elif defined(__xtensa__)\r
+#  define IRMP_BIT                             IRMP_BIT_NUMBER\r
+#  define input(x)                             GPIO_INPUT_GET(IRMP_BIT_NUMBER)\r
 #endif\r
 \r
-#if IRMP_SUPPORT_DENON_PROTOCOL == 1 && (IRMP_SUPPORT_RUWIDO_PROTOCOL == 1 || IRMP_SUPPORT_SIEMENS_PROTOCOL == 1)\r
-#  warning DENON protocol conflicts wih RUWIDO/SIEMENS, please enable only one of both protocols\r
-#  warning RUWIDO protocol disabled\r
-#  warning SIEMENS protocol disabled\r
-#  warning DENON protocol stays enabled\r
-#  undef IRMP_SUPPORT_RUWIDO_PROTOCOL\r
-#  define IRMP_SUPPORT_RUWIDO_PROTOCOL          0\r
-#  undef IRMP_SUPPORT_SIEMENS_PROTOCOL\r
-#  define IRMP_SUPPORT_SIEMENS_PROTOCOL          0\r
+#if IRMP_SUPPORT_TECHNICS_PROTOCOL == 1\r
+#  undef IRMP_SUPPORT_MATSUSHITA_PROTOCOL\r
+#  define IRMP_SUPPORT_MATSUSHITA_PROTOCOL      1\r
 #endif\r
 \r
-#if IRMP_SUPPORT_DENON_PROTOCOL == 1 && (IRMP_SUPPORT_RUWIDO_PROTOCOL == 1 || IRMP_SUPPORT_SIEMENS_PROTOCOL == 1)\r
-#  warning MERLIN protocol conflicts wih RUWIDO/SIEMENS, please enable only one of both protocols\r
+#if IRMP_SUPPORT_DENON_PROTOCOL == 1 && IRMP_SUPPORT_RUWIDO_PROTOCOL == 1\r
+#  warning DENON protocol conflicts wih RUWIDO, please enable only one of both protocols\r
 #  warning RUWIDO protocol disabled\r
-#  warning SIEMENS protocol disabled\r
-#  warning MERLIN protocol stays enabled\r
 #  undef IRMP_SUPPORT_RUWIDO_PROTOCOL\r
 #  define IRMP_SUPPORT_RUWIDO_PROTOCOL          0\r
-#  undef IRMP_SUPPORT_SIEMENS_PROTOCOL\r
-#  define IRMP_SUPPORT_SIEMENS_PROTOCOL          0\r
 #endif\r
 \r
-#if IRMP_SUPPORT_DENON_PROTOCOL == 1 && IRMP_SUPPORT_A1TVBOX_PROTOCOL == 1\r
-#  warning MERLIN protocol conflicts wih A1TVBOX, please enable only one of both protocols\r
-#  warning A1TVBOX protocol disabled\r
-#  warning MERLIN protocol stays enabled\r
-#  undef IRMP_SUPPORT_A1TVBOX_PROTOCOL\r
-#  define IRMP_SUPPORT_A1TVBOX_PROTOCOL          0\r
+#if IRMP_SUPPORT_KASEIKYO_PROTOCOL == 1 && IRMP_SUPPORT_PANASONIC_PROTOCOL == 1\r
+#  warning KASEIKYO protocol conflicts wih PANASONIC, please enable only one of both protocols\r
+#  warning PANASONIC protocol disabled\r
+#  undef IRMP_SUPPORT_PANASONIC_PROTOCOL\r
+#  define IRMP_SUPPORT_PANASONIC_PROTOCOL       0\r
+#endif\r
+\r
+#if IRMP_SUPPORT_DENON_PROTOCOL == 1 && IRMP_SUPPORT_ACP24_PROTOCOL == 1\r
+#  warning DENON protocol conflicts wih ACP24, please enable only one of both protocols\r
+#  warning ACP24 protocol disabled\r
+#  undef IRMP_SUPPORT_ACP24_PROTOCOL\r
+#  define IRMP_SUPPORT_ACP24_PROTOCOL           0\r
 #endif\r
 \r
 #if IRMP_SUPPORT_RC6_PROTOCOL == 1 && IRMP_SUPPORT_ROOMBA_PROTOCOL == 1\r
 #  define IRMP_SUPPORT_ORTEK_PROTOCOL           0\r
 #endif\r
 \r
+#if IRMP_SUPPORT_RC5_PROTOCOL == 1 && IRMP_SUPPORT_S100_PROTOCOL == 1\r
+#  warning RC5 protocol conflicts wih S100, please enable only one of both protocols\r
+#  warning S100 protocol disabled\r
+#  undef IRMP_SUPPORT_S100_PROTOCOL\r
+#  define IRMP_SUPPORT_S100_PROTOCOL            0\r
+#endif\r
+\r
+#if IRMP_SUPPORT_NUBERT_PROTOCOL == 1 && IRMP_SUPPORT_FAN_PROTOCOL == 1\r
+#  warning NUBERT protocol conflicts wih FAN, please enable only one of both protocols\r
+#  warning FAN protocol disabled\r
+#  undef IRMP_SUPPORT_FAN_PROTOCOL\r
+#  define IRMP_SUPPORT_FAN_PROTOCOL             0\r
+#endif\r
+\r
 #if IRMP_SUPPORT_FDC_PROTOCOL == 1 && IRMP_SUPPORT_ORTEK_PROTOCOL == 1\r
 #  warning FDC protocol conflicts wih ORTEK, please enable only one of both protocols\r
 #  warning ORTEK protocol disabled\r
 \r
 #define IRMP_FLAG_REPETITION            0x01\r
 \r
+#ifdef __cplusplus\r
+extern "C"\r
+{\r
+#endif\r
+\r
 extern void                             irmp_init (void);\r
 extern uint_fast8_t                     irmp_get_data (IRMP_DATA *);\r
-extern uint_fast8_t                     irmp_is_busy (void);\r
 extern uint_fast8_t                     irmp_ISR (void);\r
 \r
 #if IRMP_PROTOCOL_NAMES == 1\r
@@ -206,4 +247,8 @@ extern const char * const               irmp_protocol_names[IRMP_N_PROTOCOLS + 1
 extern void                             irmp_set_callback_ptr (void (*cb)(uint_fast8_t));\r
 #endif // IRMP_USE_CALLBACK == 1\r
 \r
+#ifdef __cplusplus\r
+}\r
+#endif\r
+\r
 #endif /* _IRMP_H_ */\r