main.cpp 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334
  1. #include <string>
  2. #include "freertos/FreeRTOS.h"
  3. #include "freertos/task.h"
  4. #include "freertos/event_groups.h"
  5. #include "driver/gpio.h"
  6. #include "sdkconfig.h"
  7. //#include "esp_psram.h" // Comming in IDF 5.0, see https://docs.espressif.com/projects/esp-idf/en/v5.0-beta1/esp32/migration-guides/release-5.x/system.html?highlight=esp_psram_get_size
  8. #include "spiram.h"
  9. #include "esp_spiram.h"
  10. // SD-Card ////////////////////
  11. #include "nvs_flash.h"
  12. #include "esp_vfs_fat.h"
  13. #include "sdmmc_cmd.h"
  14. #include "driver/sdmmc_host.h"
  15. #include "driver/sdmmc_defs.h"
  16. ///////////////////////////////
  17. #include "ClassLogFile.h"
  18. #include "connect_wlan.h"
  19. #include "read_wlanini.h"
  20. #include "server_main.h"
  21. #include "server_tflite.h"
  22. #include "server_file.h"
  23. #include "server_ota.h"
  24. #include "time_sntp.h"
  25. #include "ClassControllCamera.h"
  26. #include "server_main.h"
  27. #include "server_camera.h"
  28. #ifdef ENABLE_MQTT
  29. #include "server_mqtt.h"
  30. #endif //ENABLE_MQTT
  31. #include "Helper.h"
  32. extern const char* GIT_TAG;
  33. extern const char* GIT_REV;
  34. extern const char* GIT_BRANCH;
  35. extern const char* BUILD_TIME;
  36. extern std::string getHTMLversion(void);
  37. extern std::string getHTMLcommit(void);
  38. #define __HIDE_PASSWORD
  39. // #include "jomjol_WS2812Slow.h"
  40. #include "SmartLeds.h"
  41. #define __SD_USE_ONE_LINE_MODE__
  42. #include "server_GPIO.h"
  43. #define BLINK_GPIO GPIO_NUM_33
  44. static const char *TAG = "MAIN";
  45. //#define FLASH_GPIO GPIO_NUM_4
  46. bool Init_NVS_SDCard()
  47. {
  48. esp_err_t ret = nvs_flash_init();
  49. if (ret == ESP_ERR_NVS_NO_FREE_PAGES) {
  50. ESP_ERROR_CHECK(nvs_flash_erase());
  51. ret = nvs_flash_init();
  52. }
  53. ////////////////////////////////////////////////
  54. ESP_LOGI(TAG, "Using SDMMC peripheral");
  55. sdmmc_host_t host = SDMMC_HOST_DEFAULT();
  56. // This initializes the slot without card detect (CD) and write protect (WP) signals.
  57. // Modify slot_config.gpio_cd and slot_config.gpio_wp if your board has these signals.
  58. sdmmc_slot_config_t slot_config = SDMMC_SLOT_CONFIG_DEFAULT();
  59. // To use 1-line SD mode, uncomment the following line:
  60. #ifdef __SD_USE_ONE_LINE_MODE__
  61. slot_config.width = 1;
  62. #endif
  63. // GPIOs 15, 2, 4, 12, 13 should have external 10k pull-ups.
  64. // Internal pull-ups are not sufficient. However, enabling internal pull-ups
  65. // does make a difference some boards, so we do that here.
  66. gpio_set_pull_mode(GPIO_NUM_15, GPIO_PULLUP_ONLY); // CMD, needed in 4- and 1- line modes
  67. gpio_set_pull_mode(GPIO_NUM_2, GPIO_PULLUP_ONLY); // D0, needed in 4- and 1-line modes
  68. #ifndef __SD_USE_ONE_LINE_MODE__
  69. gpio_set_pull_mode(GPIO_NUM_4, GPIO_PULLUP_ONLY); // D1, needed in 4-line mode only
  70. gpio_set_pull_mode(GPIO_NUM_12, GPIO_PULLUP_ONLY); // D2, needed in 4-line mode only
  71. #endif
  72. gpio_set_pull_mode(GPIO_NUM_13, GPIO_PULLUP_ONLY); // D3, needed in 4- and 1-line modes
  73. // Options for mounting the filesystem.
  74. // If format_if_mount_failed is set to true, SD card will be partitioned and
  75. // formatted in case when mounting fails.
  76. esp_vfs_fat_sdmmc_mount_config_t mount_config = {
  77. .format_if_mount_failed = false,
  78. .max_files = 7, // anstatt 5 (2022-09-21)
  79. .allocation_unit_size = 16 * 1024
  80. };
  81. // Use settings defined above to initialize SD card and mount FAT filesystem.
  82. // Note: esp_vfs_fat_sdmmc_mount is an all-in-one convenience function.
  83. // Please check its source code and implement error recovery when developing
  84. // production applications.
  85. sdmmc_card_t* card;
  86. ret = esp_vfs_fat_sdmmc_mount("/sdcard", &host, &slot_config, &mount_config, &card);
  87. if (ret != ESP_OK) {
  88. if (ret == ESP_FAIL) {
  89. ESP_LOGE(TAG, "Failed to mount filesystem. "
  90. "If you want the card to be formatted, set format_if_mount_failed = true.");
  91. } else {
  92. ESP_LOGE(TAG, "Failed to initialize the card (%s). "
  93. "Make sure SD card lines have pull-up resistors in place.", esp_err_to_name(ret));
  94. }
  95. return false;
  96. }
  97. sdmmc_card_print_info(stdout, card);
  98. SaveSDCardInfo(card);
  99. return true;
  100. }
  101. void task_MainInitError_blink(void *pvParameter)
  102. {
  103. gpio_pad_select_gpio(BLINK_GPIO);
  104. gpio_set_direction(BLINK_GPIO, GPIO_MODE_OUTPUT);
  105. TickType_t xDelay;
  106. xDelay = 100 / portTICK_PERIOD_MS;
  107. ESP_LOGD(TAG, "SD-Card could not be inialized - STOP THE PROGRAMM HERE");
  108. while (1)
  109. {
  110. gpio_set_level(BLINK_GPIO, 1);
  111. vTaskDelay( xDelay );
  112. gpio_set_level(BLINK_GPIO, 0);
  113. vTaskDelay( xDelay );
  114. }
  115. vTaskDelete(NULL); //Delete this task if it exits from the loop above
  116. }
  117. extern "C" void app_main(void)
  118. {
  119. TickType_t xDelay;
  120. ESP_LOGI(TAG, "\n\n\n\n\n"); // Add mark on log to see when it restarted
  121. PowerResetCamera();
  122. esp_err_t camStatus = Camera.InitCam();
  123. Camera.LightOnOff(false);
  124. xDelay = 2000 / portTICK_PERIOD_MS;
  125. ESP_LOGD(TAG, "After camera initialization: sleep for: %ldms", (long) xDelay);
  126. vTaskDelay( xDelay );
  127. if (!Init_NVS_SDCard())
  128. {
  129. xTaskCreate(&task_MainInitError_blink, "task_MainInitError_blink", configMINIMAL_STACK_SIZE * 64, NULL, tskIDLE_PRIORITY+1, NULL);
  130. return; // No way to continue without SD-Card!
  131. }
  132. string versionFormated = "Branch: '" + std::string(GIT_BRANCH) + \
  133. "', Revision: " + std::string(GIT_REV) +", Date/Time: " + std::string(BUILD_TIME) + \
  134. ", Web UI: " + getHTMLversion();
  135. if (std::string(GIT_TAG) != "") { // We are on a tag, add it as prefix
  136. string versionFormated = "Tag: '" + std::string(GIT_TAG) + "', " + versionFormated;
  137. }
  138. LogFile.CreateLogDirectories();
  139. LogFile.WriteToFile(ESP_LOG_INFO, TAG, "=================================================");
  140. LogFile.WriteToFile(ESP_LOG_INFO, TAG, "==================== Startup ====================");
  141. LogFile.WriteToFile(ESP_LOG_INFO, TAG, "=================================================");
  142. LogFile.WriteToFile(ESP_LOG_INFO, TAG, versionFormated);
  143. LogFile.WriteToFile(ESP_LOG_INFO, TAG, "Reset reason: " + getResetReason());
  144. CheckOTAUpdate();
  145. CheckUpdate();
  146. char *ssid = NULL, *passwd = NULL, *hostname = NULL, *ip = NULL, *gateway = NULL, *netmask = NULL, *dns = NULL;
  147. LoadWlanFromFile("/sdcard/wlan.ini", ssid, passwd, hostname, ip, gateway, netmask, dns);
  148. if (ssid != NULL && passwd != NULL)
  149. #ifdef __HIDE_PASSWORD
  150. ESP_LOGD(TAG, "WLan: %s, XXXXXX", ssid);
  151. #else
  152. ESP_LOGD(TAG, "WLan: %s, %s", ssid, passwd);
  153. #endif
  154. else
  155. ESP_LOGD(TAG, "No SSID and PASSWORD set!!!");
  156. if (hostname != NULL)
  157. ESP_LOGD(TAG, "Hostname: %s", hostname);
  158. else
  159. ESP_LOGD(TAG, "Hostname not set");
  160. if (ip != NULL && gateway != NULL && netmask != NULL)
  161. ESP_LOGD(TAG, "Fixed IP: %s, Gateway %s, Netmask %s", ip, gateway, netmask);
  162. if (dns != NULL)
  163. ESP_LOGD(TAG, "DNS IP: %s", dns);
  164. wifi_init_sta(ssid, passwd, hostname, ip, gateway, netmask, dns);
  165. xDelay = 2000 / portTICK_PERIOD_MS;
  166. ESP_LOGD(TAG, "main: sleep for: %ldms", (long) xDelay);
  167. vTaskDelay( xDelay );
  168. if (!setup_time()) {
  169. LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "NTP Initialization failed!");
  170. setSystemStatusFlag(SYSTEM_STATUS_NTP_BAD);
  171. }
  172. setBootTime();
  173. LogFile.WriteToFile(ESP_LOG_INFO, TAG, "=================================================");
  174. LogFile.WriteToFile(ESP_LOG_INFO, TAG, "================== Main Started =================");
  175. LogFile.WriteToFile(ESP_LOG_INFO, TAG, "=================================================");
  176. if (getHTMLcommit().substr(0, 7) != std::string(GIT_REV).substr(0, 7)) { // Compare the first 7 characters of both hashes
  177. LogFile.WriteToFile(ESP_LOG_WARN, TAG, std::string("Web UI version (") + getHTMLcommit() + ") does not match firmware version (" + std::string(GIT_REV) + ") !");
  178. }
  179. std::string zw = gettimestring("%Y%m%d-%H%M%S");
  180. ESP_LOGD(TAG, "time %s", zw.c_str());
  181. /* Check if PSRAM can be initalized */
  182. esp_err_t ret;
  183. ret = esp_spiram_init();
  184. if (ret == ESP_FAIL) { // Failed to init PSRAM, most likely not available or broken
  185. LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Failed to initialize PSRAM (" + std::to_string(ret) + ")!");
  186. LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Either your device misses the PSRAM chip or it is broken!");
  187. setSystemStatusFlag(SYSTEM_STATUS_PSRAM_BAD);
  188. }
  189. else { // PSRAM init ok
  190. /* Check if PSRAM provides at least 4 MB */
  191. size_t psram_size = esp_spiram_get_size();
  192. // size_t psram_size = esp_psram_get_size(); // comming in IDF 5.0
  193. LogFile.WriteToFile(ESP_LOG_INFO, TAG, "The device has " + std::to_string(psram_size/1024/1024) + " MBytes of PSRAM");
  194. if (psram_size < (4*1024*1024)) { // PSRAM is below 4 MBytes
  195. LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "At least 4 MBytes are required!");
  196. LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Does the device really have a 4 Mbytes PSRAM?");
  197. setSystemStatusFlag(SYSTEM_STATUS_PSRAM_BAD);
  198. }
  199. }
  200. /* Check available Heap memory */
  201. size_t _hsize = getESPHeapSize();
  202. if (_hsize < 4000000) { // Check available Heap memory for a bit less than 4 MB (a test on a good device showed 4187558 bytes to be available)
  203. LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Not enough Heap memory available. Expected around 4 MBytes, but only " + std::to_string(_hsize) + " Bytes are available! That is not enough for this firmware!");
  204. setSystemStatusFlag(SYSTEM_STATUS_HEAP_TOO_SMALL);
  205. } else { // Heap memory is ok
  206. if (camStatus != ESP_OK) {
  207. LogFile.WriteToFile(ESP_LOG_WARN, TAG, "Failed to initialize camera module, retrying...");
  208. PowerResetCamera();
  209. esp_err_t camStatus = Camera.InitCam();
  210. Camera.LightOnOff(false);
  211. xDelay = 2000 / portTICK_PERIOD_MS;
  212. ESP_LOGD(TAG, "After camera initialization: sleep for: %ldms", (long) xDelay);
  213. vTaskDelay( xDelay );
  214. if (camStatus != ESP_OK) {
  215. LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Failed to initialize camera module!");
  216. LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Check that your camera module is working and connected properly!");
  217. setSystemStatusFlag(SYSTEM_STATUS_CAM_BAD);
  218. }
  219. } else { // Test Camera
  220. camera_fb_t * fb = esp_camera_fb_get();
  221. if (!fb) {
  222. LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Camera Framebuffer cannot be initialized!");
  223. /* Easiest would be to simply restart here and try again,
  224. how ever there seem to be systems where it fails at startup but still work corectly later.
  225. Therefore we treat it still as successed! */
  226. setSystemStatusFlag(SYSTEM_STATUS_CAM_FB_BAD);
  227. }
  228. else {
  229. esp_camera_fb_return(fb);
  230. Camera.LightOnOff(false);
  231. }
  232. }
  233. }
  234. xDelay = 2000 / portTICK_PERIOD_MS;
  235. ESP_LOGD(TAG, "main: sleep for: %ldms", (long) xDelay*10);
  236. vTaskDelay( xDelay );
  237. ESP_LOGD(TAG, "starting servers");
  238. server = start_webserver();
  239. register_server_camera_uri(server);
  240. register_server_tflite_uri(server);
  241. register_server_file_uri(server, "/sdcard");
  242. register_server_ota_sdcard_uri(server);
  243. #ifdef ENABLE_MQTT
  244. register_server_mqtt_uri(server);
  245. #endif //ENABLE_MQTT
  246. gpio_handler_create(server);
  247. ESP_LOGD(TAG, "vor reg server main");
  248. register_server_main_uri(server, "/sdcard");
  249. /* Testing */
  250. //setSystemStatusFlag(SYSTEM_STATUS_CAM_FB_BAD);
  251. //setSystemStatusFlag(SYSTEM_STATUS_PSRAM_BAD);
  252. /* Main Init has successed or only an error which allows to continue operation */
  253. if (getSystemStatus() == 0) { // No error flag is set
  254. LogFile.WriteToFile(ESP_LOG_INFO, TAG, "Initialization completed successfully!");
  255. ESP_LOGD(TAG, "vor do autostart");
  256. TFliteDoAutoStart();
  257. }
  258. else if (isSetSystemStatusFlag(SYSTEM_STATUS_CAM_FB_BAD) || // Non critical errors occured, we try to continue...
  259. isSetSystemStatusFlag(SYSTEM_STATUS_NTP_BAD)) {
  260. LogFile.WriteToFile(ESP_LOG_WARN, TAG, "Initialization completed with errors, but trying to continue...");
  261. ESP_LOGD(TAG, "vor do autostart");
  262. TFliteDoAutoStart();
  263. }
  264. else { // Any other error is critical and makes running the flow impossible.
  265. LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Initialization failed. Not starting flows!");
  266. }
  267. }