Fork of the espurna firmware for `mhsw` switches
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

131 lines
4.0 KiB

6 years ago
  1. #pragma once
  2. //------------------------------------------------------------------------------
  3. // Do not change this file unless you know what you are doing
  4. // Configuration settings are in the general.h file
  5. //------------------------------------------------------------------------------
  6. #if DEBUG_TELNET_SUPPORT
  7. #undef TELNET_SUPPORT
  8. #define TELNET_SUPPORT 1
  9. #endif
  10. #if not WEB_SUPPORT
  11. #undef DEBUG_WEB_SUPPORT
  12. #define DEBUG_WEB_SUPPORT 0
  13. #endif
  14. #if not WEB_SUPPORT
  15. #undef API_SUPPORT
  16. #define API_SUPPORT 0 // API support requires web support
  17. #endif
  18. #if not WEB_SUPPORT
  19. #undef SSDP_SUPPORT
  20. #define SSDP_SUPPORT 0 // SSDP support requires web support
  21. #endif
  22. #if UART_MQTT_SUPPORT
  23. #define MQTT_SUPPORT 1
  24. #undef TERMINAL_SUPPORT
  25. #define TERMINAL_SUPPORT 0
  26. #undef DEBUG_SERIAL_SUPPORT
  27. #define DEBUG_SERIAL_SUPPORT 0
  28. #endif
  29. #if ALEXA_SUPPORT
  30. #undef BROKER_SUPPORT
  31. #define BROKER_SUPPORT 1 // If Alexa enabled enable BROKER
  32. #endif
  33. #if RPN_RULES_SUPPORT
  34. #undef BROKER_SUPPORT
  35. #define BROKER_SUPPORT 1 // If RPN Rules enabled enable BROKER
  36. #undef WEB_SUPPORT
  37. #define WEB_SUPPORT 1
  38. #undef MQTT_SUPPORT
  39. #define MQTT_SUPPORT 1
  40. #endif
  41. #if INFLUXDB_SUPPORT
  42. #undef BROKER_SUPPORT
  43. #define BROKER_SUPPORT 1 // If InfluxDB enabled enable BROKER
  44. #endif
  45. #if DOMOTICZ_SUPPORT
  46. #undef MQTT_SUPPORT
  47. #define MQTT_SUPPORT 1 // If Domoticz enabled enable MQTT
  48. #undef BROKER_SUPPORT
  49. #define BROKER_SUPPORT 1 // If Domoticz enabled enable BROKER
  50. #endif
  51. #if HOMEASSISTANT_SUPPORT
  52. #undef MQTT_SUPPORT
  53. #define MQTT_SUPPORT 1 // If Home Assistant enabled enable MQTT
  54. #endif
  55. #if THINGSPEAK_SUPPORT
  56. #undef BROKER_SUPPORT
  57. #define BROKER_SUPPORT 1 // If Thingspeak enabled enable BROKER
  58. #endif
  59. #if SCHEDULER_SUPPORT
  60. #undef NTP_SUPPORT
  61. #define NTP_SUPPORT 1 // Scheduler needs NTP
  62. #endif
  63. #if LWIP_VERSION_MAJOR != 1
  64. #undef MDNS_CLIENT_SUPPORT
  65. #define MDNS_CLIENT_SUPPORT 0 // default resolver already handles this
  66. #endif
  67. #if not defined(ARDUINO_ESP8266_RELEASE_2_3_0)
  68. #undef TELNET_SERVER_ASYNC_BUFFERED
  69. #define TELNET_SERVER_ASYNC_BUFFERED 1 // enable buffered telnet by default on latest Cores
  70. #endif
  71. #if LLMNR_SUPPORT && defined(ARDUINO_ESP8266_RELEASE_2_3_0)
  72. #undef LLMNR_SUPPORT
  73. #define LLMNR_SUPPORT 0
  74. #endif
  75. #if NETBIOS_SUPPORT && defined(ARDUINO_ESP8266_RELEASE_2_3_0)
  76. #undef NETBIOS_SUPPORT
  77. #define NETBIOS_SUPPORT 0
  78. #endif
  79. #if SSDP_SUPPORT && defined(ARDUINO_ESP8266_RELEASE_2_3_0)
  80. #undef SSDP_SUPPORT
  81. #define SSDP_SUPPORT 0
  82. #endif
  83. #if LIGHT_PROVIDER == LIGHT_PROVIDER_TUYA
  84. #undef TUYA_SUPPORT
  85. #define TUYA_SUPPORT 1 // Need base Tuya module for this to work
  86. #undef LIGHT_USE_TRANSITIONS
  87. #define LIGHT_USE_TRANSITIONS 0 // TODO: temporary, maybe slower step instead?
  88. #endif
  89. #if TUYA_SUPPORT
  90. #undef BROKER_SUPPORT
  91. #define BROKER_SUPPORT 1 // Broker is required to process relay & lights events
  92. #endif
  93. // TODO: clean-up SSL_ENABLED and USE_SSL settings for 1.15.0
  94. #if ASYNC_TCP_SSL_ENABLED && SECURE_CLIENT == SECURE_CLIENT_NONE
  95. #undef SECURE_CLIENT
  96. #define SECURE_CLIENT SECURE_CLIENT_AXTLS
  97. #endif
  98. #if THINGSPEAK_USE_SSL && THINGSPEAK_USE_ASYNC && (!ASYNC_TCP_SSL_ENABLED)
  99. #warning "Thingspeak in ASYNC mode requires a globally defined ASYNC_TCP_SSL_ENABLED=1"
  100. #undef THINGSPEAK_SUPPORT
  101. #define THINGSPEAK_SUPPORT 0 // Thingspeak in ASYNC mode requires ASYNC_TCP_SSL_ENABLED
  102. #endif
  103. #if WEB_SUPPORT && WEB_SSL_ENABLED && (!ASYNC_TCP_SSL_ENABLED)
  104. #warning "WEB_SUPPORT with SSL requires a globally defined ASYNC_TCP_SSL_ENABLED=1"
  105. #undef WEB_SSL_ENABLED
  106. #define WEB_SSL_ENABLED 0 // WEB_SUPPORT mode th SSL requires ASYNC_TCP_SSL_ENABLED
  107. #endif