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.

343 lines
9.4 KiB

8 years ago
8 years ago
8 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
8 years ago
8 years ago
8 years ago
7 years ago
8 years ago
7 years ago
8 years ago
  1. /*
  2. ESPurna
  3. Copyright (C) 2016-2017 by Xose Pérez <xose dot perez at gmail dot com>
  4. This program is free software: you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation, either version 3 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program. If not, see <http://www.gnu.org/licenses/>.
  14. */
  15. #include "config/all.h"
  16. #include <EEPROM.h>
  17. // -----------------------------------------------------------------------------
  18. // METHODS
  19. // -----------------------------------------------------------------------------
  20. void hardwareSetup() {
  21. EEPROM.begin(EEPROM_SIZE);
  22. #if DEBUG_SERIAL_SUPPORT
  23. DEBUG_PORT.begin(SERIAL_BAUDRATE);
  24. #if DEBUG_ESP_WIFI
  25. DEBUG_PORT.setDebugOutput(true);
  26. #endif
  27. #elif defined(SERIAL_BAUDRATE)
  28. Serial.begin(SERIAL_BAUDRATE);
  29. #endif
  30. #if SPIFFS_SUPPORT
  31. SPIFFS.begin();
  32. #endif
  33. }
  34. void hardwareLoop() {
  35. // System check
  36. static bool checked = false;
  37. if (!checked && (millis() > CRASH_SAFE_TIME)) {
  38. // Check system as stable
  39. systemCheck(true);
  40. checked = true;
  41. }
  42. // Heartbeat
  43. static unsigned long last_uptime = 0;
  44. if ((millis() - last_uptime > HEARTBEAT_INTERVAL) || (last_uptime == 0)) {
  45. last_uptime = millis();
  46. heartbeat();
  47. }
  48. }
  49. // -----------------------------------------------------------------------------
  50. // BOOTING
  51. // -----------------------------------------------------------------------------
  52. unsigned int sectors(size_t size) {
  53. return (int) (size + SPI_FLASH_SEC_SIZE - 1) / SPI_FLASH_SEC_SIZE;
  54. }
  55. void welcome() {
  56. DEBUG_MSG_P(PSTR("\n\n"));
  57. DEBUG_MSG_P(PSTR("[INIT] %s %s\n"), (char *) APP_NAME, (char *) APP_VERSION);
  58. DEBUG_MSG_P(PSTR("[INIT] %s\n"), (char *) APP_AUTHOR);
  59. DEBUG_MSG_P(PSTR("[INIT] %s\n\n"), (char *) APP_WEBSITE);
  60. DEBUG_MSG_P(PSTR("[INIT] CPU chip ID: 0x%06X\n"), ESP.getChipId());
  61. DEBUG_MSG_P(PSTR("[INIT] CPU frequency: %d MHz\n"), ESP.getCpuFreqMHz());
  62. DEBUG_MSG_P(PSTR("[INIT] SDK version: %s\n"), ESP.getSdkVersion());
  63. DEBUG_MSG_P(PSTR("[INIT] Core version: %s\n"), ESP.getCoreVersion().c_str());
  64. DEBUG_MSG_P(PSTR("\n"));
  65. // -------------------------------------------------------------------------
  66. FlashMode_t mode = ESP.getFlashChipMode();
  67. DEBUG_MSG_P(PSTR("[INIT] Flash chip ID: 0x%06X\n"), ESP.getFlashChipId());
  68. DEBUG_MSG_P(PSTR("[INIT] Flash speed: %u Hz\n"), ESP.getFlashChipSpeed());
  69. DEBUG_MSG_P(PSTR("[INIT] Flash mode: %s\n"), mode == FM_QIO ? "QIO" : mode == FM_QOUT ? "QOUT" : mode == FM_DIO ? "DIO" : mode == FM_DOUT ? "DOUT" : "UNKNOWN");
  70. DEBUG_MSG_P(PSTR("\n"));
  71. DEBUG_MSG_P(PSTR("[INIT] Flash sector size: %8u bytes\n"), SPI_FLASH_SEC_SIZE);
  72. DEBUG_MSG_P(PSTR("[INIT] Flash size (CHIP): %8u bytes\n"), ESP.getFlashChipRealSize());
  73. DEBUG_MSG_P(PSTR("[INIT] Flash size (SDK): %8u bytes / %4d sectors\n"), ESP.getFlashChipSize(), sectors(ESP.getFlashChipSize()));
  74. DEBUG_MSG_P(PSTR("[INIT] Firmware size: %8u bytes / %4d sectors\n"), ESP.getSketchSize(), sectors(ESP.getSketchSize()));
  75. DEBUG_MSG_P(PSTR("[INIT] OTA size: %8u bytes / %4d sectors\n"), ESP.getFreeSketchSpace(), sectors(ESP.getFreeSketchSpace()));
  76. #if SPIFFS_SUPPORT
  77. FSInfo fs_info;
  78. bool fs = SPIFFS.info(fs_info);
  79. if (fs) {
  80. DEBUG_MSG_P(PSTR("[INIT] SPIFFS size: %8u bytes / %4d sectors\n"), fs_info.totalBytes, sectors(fs_info.totalBytes));
  81. }
  82. #else
  83. DEBUG_MSG_P(PSTR("[INIT] SPIFFS size: %8u bytes / %4d sectors\n"), 0, 0);
  84. #endif
  85. DEBUG_MSG_P(PSTR("[INIT] EEPROM size: %8u bytes / %4d sectors\n"), settingsMaxSize(), sectors(settingsMaxSize()));
  86. DEBUG_MSG_P(PSTR("[INIT] Empty space: %8u bytes / 4 sectors\n"), 4 * SPI_FLASH_SEC_SIZE);
  87. DEBUG_MSG_P(PSTR("\n"));
  88. // -------------------------------------------------------------------------
  89. #if SPIFFS_SUPPORT
  90. if (fs) {
  91. DEBUG_MSG_P(PSTR("[INIT] SPIFFS total size: %8u bytes\n"), fs_info.totalBytes);
  92. DEBUG_MSG_P(PSTR("[INIT] used size: %8u bytes\n"), fs_info.usedBytes);
  93. DEBUG_MSG_P(PSTR("[INIT] block size: %8u bytes\n"), fs_info.blockSize);
  94. DEBUG_MSG_P(PSTR("[INIT] page size: %8u bytes\n"), fs_info.pageSize);
  95. DEBUG_MSG_P(PSTR("[INIT] max files: %8u\n"), fs_info.maxOpenFiles);
  96. DEBUG_MSG_P(PSTR("[INIT] max length: %8u\n"), fs_info.maxPathLength);
  97. DEBUG_MSG_P(PSTR("\n"));
  98. }
  99. #endif
  100. // -------------------------------------------------------------------------
  101. DEBUG_MSG_P(PSTR("[INIT] MANUFACTURER: %s\n"), MANUFACTURER);
  102. DEBUG_MSG_P(PSTR("[INIT] DEVICE: %s\n"), DEVICE);
  103. DEBUG_MSG_P(PSTR("[INIT] SUPPORT:"));
  104. #if ALEXA_SUPPORT
  105. DEBUG_MSG_P(PSTR(" ALEXA"));
  106. #endif
  107. #if ANALOG_SUPPORT
  108. DEBUG_MSG_P(PSTR(" ANALOG"));
  109. #endif
  110. #if COUNTER_SUPPORT
  111. DEBUG_MSG_P(PSTR(" COUNTER"));
  112. #endif
  113. #if DEBUG_SERIAL_SUPPORT
  114. DEBUG_MSG_P(PSTR(" DEBUG_SERIAL"));
  115. #endif
  116. #if DEBUG_UDP_SUPPORT
  117. DEBUG_MSG_P(PSTR(" DEBUG_UDP"));
  118. #endif
  119. #if DHT_SUPPORT
  120. DEBUG_MSG_P(PSTR(" DHT"));
  121. #endif
  122. #if DOMOTICZ_SUPPORT
  123. DEBUG_MSG_P(PSTR(" DOMOTICZ"));
  124. #endif
  125. #if DS18B20_SUPPORT
  126. DEBUG_MSG_P(PSTR(" DS18B20"));
  127. #endif
  128. #if EMON_SUPPORT
  129. DEBUG_MSG_P(PSTR(" EMON"));
  130. #endif
  131. #if HOMEASSISTANT_SUPPORT
  132. DEBUG_MSG_P(PSTR(" HOMEASSISTANT"));
  133. #endif
  134. #if I2C_SUPPORT
  135. DEBUG_MSG_P(PSTR(" I2C"));
  136. #endif
  137. #if INFLUXDB_SUPPORT
  138. DEBUG_MSG_P(PSTR(" INFLUXDB"));
  139. #endif
  140. #if MDNS_SUPPORT
  141. DEBUG_MSG_P(PSTR(" MDNS"));
  142. #endif
  143. #if NOFUSS_SUPPORT
  144. DEBUG_MSG_P(PSTR(" NOFUSS"));
  145. #endif
  146. #if NTP_SUPPORT
  147. DEBUG_MSG_P(PSTR(" NTP"));
  148. #endif
  149. #if RF_SUPPORT
  150. DEBUG_MSG_P(PSTR(" RF"));
  151. #endif
  152. #if SPIFFS_SUPPORT
  153. DEBUG_MSG_P(PSTR(" SPIFFS"));
  154. #endif
  155. #if TERMINAL_SUPPORT
  156. DEBUG_MSG_P(PSTR(" TERMINAL"));
  157. #endif
  158. #if WEB_SUPPORT
  159. DEBUG_MSG_P(PSTR(" WEB"));
  160. #endif
  161. DEBUG_MSG_P(PSTR("\n\n"));
  162. // -------------------------------------------------------------------------
  163. unsigned char custom_reset = customReset();
  164. if (custom_reset > 0) {
  165. char buffer[32];
  166. strcpy_P(buffer, custom_reset_string[custom_reset-1]);
  167. DEBUG_MSG_P(PSTR("[INIT] Last reset reason: %s\n"), buffer);
  168. } else {
  169. DEBUG_MSG_P(PSTR("[INIT] Last reset reason: %s\n"), (char *) ESP.getResetReason().c_str());
  170. }
  171. DEBUG_MSG_P(PSTR("[INIT] Free heap: %u bytes\n"), ESP.getFreeHeap());
  172. DEBUG_MSG_P(PSTR("\n"));
  173. }
  174. void setup() {
  175. // Init EEPROM, Serial and SPIFFS
  176. hardwareSetup();
  177. // Question system stability
  178. systemCheck(false);
  179. // Show welcome message and system configuration
  180. welcome();
  181. // Init persistance and terminal features
  182. settingsSetup();
  183. if (getSetting("hostname").length() == 0) {
  184. setSetting("hostname", getIdentifier());
  185. saveSettings();
  186. }
  187. delay(500);
  188. wifiSetup();
  189. otaSetup();
  190. // Do not run the next services if system is flagged stable
  191. if (!systemCheck()) return;
  192. #if WEB_SUPPORT
  193. webSetup();
  194. #endif
  195. #if LIGHT_PROVIDER != LIGHT_PROVIDER_NONE
  196. lightSetup();
  197. #endif
  198. relaySetup();
  199. buttonSetup();
  200. ledSetup();
  201. mqttSetup();
  202. #ifdef ITEAD_SONOFF_RFBRIDGE
  203. rfbSetup();
  204. #endif
  205. #if NTP_SUPPORT
  206. ntpSetup();
  207. #endif
  208. #if I2C_SUPPORT
  209. i2cSetup();
  210. #endif
  211. #if ALEXA_SUPPORT
  212. alexaSetup();
  213. #endif
  214. #if NOFUSS_SUPPORT
  215. nofussSetup();
  216. #endif
  217. #if INFLUXDB_SUPPORT
  218. influxDBSetup();
  219. #endif
  220. #if HLW8012_SUPPORT
  221. hlw8012Setup();
  222. #endif
  223. #if DS18B20_SUPPORT
  224. dsSetup();
  225. #endif
  226. #if ANALOG_SUPPORT
  227. analogSetup();
  228. #endif
  229. #if COUNTER_SUPPORT
  230. counterSetup();
  231. #endif
  232. #if DHT_SUPPORT
  233. dhtSetup();
  234. #endif
  235. #if RF_SUPPORT
  236. rfSetup();
  237. #endif
  238. #if EMON_SUPPORT
  239. powerMonitorSetup();
  240. #endif
  241. #if DOMOTICZ_SUPPORT
  242. domoticzSetup();
  243. #endif
  244. // Prepare configuration for version 2.0
  245. hwUpwardsCompatibility();
  246. }
  247. void loop() {
  248. hardwareLoop();
  249. settingsLoop();
  250. wifiLoop();
  251. otaLoop();
  252. // Do not run the next services if system is flagged stable
  253. if (!systemCheck()) return;
  254. buttonLoop();
  255. relayLoop();
  256. ledLoop();
  257. mqttLoop();
  258. #ifdef ITEAD_SONOFF_RFBRIDGE
  259. rfbLoop();
  260. #endif
  261. #if NTP_SUPPORT
  262. ntpLoop();
  263. #endif
  264. #if ALEXA_SUPPORT
  265. alexaLoop();
  266. #endif
  267. #if NOFUSS_SUPPORT
  268. nofussLoop();
  269. #endif
  270. #if HLW8012_SUPPORT
  271. hlw8012Loop();
  272. #endif
  273. #if DS18B20_SUPPORT
  274. dsLoop();
  275. #endif
  276. #if ANALOG_SUPPORT
  277. analogLoop();
  278. #endif
  279. #if COUNTER_SUPPORT
  280. counterLoop();
  281. #endif
  282. #if DHT_SUPPORT
  283. dhtLoop();
  284. #endif
  285. #if RF_SUPPORT
  286. rfLoop();
  287. #endif
  288. #if EMON_SUPPORT
  289. powerMonitorLoop();
  290. #endif
  291. }