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.

351 lines
9.6 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
7 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. } else {
  98. DEBUG_MSG_P(PSTR("[INIT] No SPIFFS partition\n"));
  99. }
  100. DEBUG_MSG_P(PSTR("\n"));
  101. #endif
  102. // -------------------------------------------------------------------------
  103. DEBUG_MSG_P(PSTR("[INIT] MANUFACTURER: %s\n"), MANUFACTURER);
  104. DEBUG_MSG_P(PSTR("[INIT] DEVICE: %s\n"), DEVICE);
  105. DEBUG_MSG_P(PSTR("[INIT] SUPPORT:"));
  106. #if ALEXA_SUPPORT
  107. DEBUG_MSG_P(PSTR(" ALEXA"));
  108. #endif
  109. #if ANALOG_SUPPORT
  110. DEBUG_MSG_P(PSTR(" ANALOG"));
  111. #endif
  112. #if COUNTER_SUPPORT
  113. DEBUG_MSG_P(PSTR(" COUNTER"));
  114. #endif
  115. #if DEBUG_SERIAL_SUPPORT
  116. DEBUG_MSG_P(PSTR(" DEBUG_SERIAL"));
  117. #endif
  118. #if DEBUG_UDP_SUPPORT
  119. DEBUG_MSG_P(PSTR(" DEBUG_UDP"));
  120. #endif
  121. #if DHT_SUPPORT
  122. DEBUG_MSG_P(PSTR(" DHT"));
  123. #endif
  124. #if DOMOTICZ_SUPPORT
  125. DEBUG_MSG_P(PSTR(" DOMOTICZ"));
  126. #endif
  127. #if DS18B20_SUPPORT
  128. DEBUG_MSG_P(PSTR(" DS18B20"));
  129. #endif
  130. #if EMON_SUPPORT
  131. DEBUG_MSG_P(PSTR(" EMON"));
  132. #endif
  133. #if HLW8012_SUPPORT
  134. DEBUG_MSG_P(PSTR(" HLW8012"));
  135. #endif
  136. #if HOMEASSISTANT_SUPPORT
  137. DEBUG_MSG_P(PSTR(" HOMEASSISTANT"));
  138. #endif
  139. #if I2C_SUPPORT
  140. DEBUG_MSG_P(PSTR(" I2C"));
  141. #endif
  142. #if INFLUXDB_SUPPORT
  143. DEBUG_MSG_P(PSTR(" INFLUXDB"));
  144. #endif
  145. #if MDNS_SUPPORT
  146. DEBUG_MSG_P(PSTR(" MDNS"));
  147. #endif
  148. #if NOFUSS_SUPPORT
  149. DEBUG_MSG_P(PSTR(" NOFUSS"));
  150. #endif
  151. #if NTP_SUPPORT
  152. DEBUG_MSG_P(PSTR(" NTP"));
  153. #endif
  154. #if RF_SUPPORT
  155. DEBUG_MSG_P(PSTR(" RF"));
  156. #endif
  157. #if SPIFFS_SUPPORT
  158. DEBUG_MSG_P(PSTR(" SPIFFS"));
  159. #endif
  160. #if TERMINAL_SUPPORT
  161. DEBUG_MSG_P(PSTR(" TERMINAL"));
  162. #endif
  163. #if WEB_SUPPORT
  164. DEBUG_MSG_P(PSTR(" WEB"));
  165. #endif
  166. DEBUG_MSG_P(PSTR("\n\n"));
  167. // -------------------------------------------------------------------------
  168. unsigned char custom_reset = customReset();
  169. if (custom_reset > 0) {
  170. char buffer[32];
  171. strcpy_P(buffer, custom_reset_string[custom_reset-1]);
  172. DEBUG_MSG_P(PSTR("[INIT] Last reset reason: %s\n"), buffer);
  173. } else {
  174. DEBUG_MSG_P(PSTR("[INIT] Last reset reason: %s\n"), (char *) ESP.getResetReason().c_str());
  175. }
  176. DEBUG_MSG_P(PSTR("[INIT] Free heap: %u bytes\n"), ESP.getFreeHeap());
  177. DEBUG_MSG_P(PSTR("\n"));
  178. }
  179. void setup() {
  180. // Init EEPROM, Serial and SPIFFS
  181. hardwareSetup();
  182. // Question system stability
  183. systemCheck(false);
  184. // Show welcome message and system configuration
  185. welcome();
  186. // Init persistance and terminal features
  187. settingsSetup();
  188. if (getSetting("hostname").length() == 0) {
  189. setSetting("hostname", getIdentifier());
  190. saveSettings();
  191. }
  192. delay(500);
  193. wifiSetup();
  194. otaSetup();
  195. #if TELNET_SUPPORT
  196. telnetSetup();
  197. #endif
  198. // Do not run the next services if system is flagged stable
  199. if (!systemCheck()) return;
  200. #if WEB_SUPPORT
  201. webSetup();
  202. #endif
  203. #if LIGHT_PROVIDER != LIGHT_PROVIDER_NONE
  204. lightSetup();
  205. #endif
  206. relaySetup();
  207. buttonSetup();
  208. ledSetup();
  209. mqttSetup();
  210. #ifdef ITEAD_SONOFF_RFBRIDGE
  211. rfbSetup();
  212. #endif
  213. #if NTP_SUPPORT
  214. ntpSetup();
  215. #endif
  216. #if I2C_SUPPORT
  217. i2cSetup();
  218. #endif
  219. #if ALEXA_SUPPORT
  220. alexaSetup();
  221. #endif
  222. #if NOFUSS_SUPPORT
  223. nofussSetup();
  224. #endif
  225. #if INFLUXDB_SUPPORT
  226. influxDBSetup();
  227. #endif
  228. #if HLW8012_SUPPORT
  229. hlw8012Setup();
  230. #endif
  231. #if DS18B20_SUPPORT
  232. dsSetup();
  233. #endif
  234. #if ANALOG_SUPPORT
  235. analogSetup();
  236. #endif
  237. #if COUNTER_SUPPORT
  238. counterSetup();
  239. #endif
  240. #if DHT_SUPPORT
  241. dhtSetup();
  242. #endif
  243. #if RF_SUPPORT
  244. rfSetup();
  245. #endif
  246. #if EMON_SUPPORT
  247. powerMonitorSetup();
  248. #endif
  249. #if DOMOTICZ_SUPPORT
  250. domoticzSetup();
  251. #endif
  252. // Prepare configuration for version 2.0
  253. hwUpwardsCompatibility();
  254. }
  255. void loop() {
  256. hardwareLoop();
  257. settingsLoop();
  258. wifiLoop();
  259. otaLoop();
  260. // Do not run the next services if system is flagged stable
  261. if (!systemCheck()) return;
  262. buttonLoop();
  263. relayLoop();
  264. ledLoop();
  265. mqttLoop();
  266. #ifdef ITEAD_SONOFF_RFBRIDGE
  267. rfbLoop();
  268. #endif
  269. #if NTP_SUPPORT
  270. ntpLoop();
  271. #endif
  272. #if ALEXA_SUPPORT
  273. alexaLoop();
  274. #endif
  275. #if NOFUSS_SUPPORT
  276. nofussLoop();
  277. #endif
  278. #if HLW8012_SUPPORT
  279. hlw8012Loop();
  280. #endif
  281. #if DS18B20_SUPPORT
  282. dsLoop();
  283. #endif
  284. #if ANALOG_SUPPORT
  285. analogLoop();
  286. #endif
  287. #if COUNTER_SUPPORT
  288. counterLoop();
  289. #endif
  290. #if DHT_SUPPORT
  291. dhtLoop();
  292. #endif
  293. #if RF_SUPPORT
  294. rfLoop();
  295. #endif
  296. #if EMON_SUPPORT
  297. powerMonitorLoop();
  298. #endif
  299. }