main.cpp 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312
  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. // SD-Card ////////////////////
  8. #include "nvs_flash.h"
  9. #include "esp_vfs_fat.h"
  10. #include "sdmmc_cmd.h"
  11. #include "driver/sdmmc_host.h"
  12. #include "driver/sdmmc_defs.h"
  13. ///////////////////////////////
  14. #include "ClassLogFile.h"
  15. #include "connect_wlan.h"
  16. #include "read_wlanini.h"
  17. #include "server_main.h"
  18. #include "server_tflite.h"
  19. #include "server_file.h"
  20. #include "server_ota.h"
  21. #include "time_sntp.h"
  22. #include "ClassControllCamera.h"
  23. #include "server_main.h"
  24. #include "server_camera.h"
  25. #include "server_mqtt.h"
  26. #include "Helper.h"
  27. extern const char* GIT_TAG;
  28. extern const char* GIT_REV;
  29. extern const char* GIT_BRANCH;
  30. extern const char* BUILD_TIME;
  31. extern const char* getHTMLversion(void);
  32. #define __HIDE_PASSWORD
  33. // #include "jomjol_WS2812Slow.h"
  34. #include "SmartLeds.h"
  35. #define __SD_USE_ONE_LINE_MODE__
  36. #include "server_GPIO.h"
  37. #define BLINK_GPIO GPIO_NUM_33
  38. static const char *TAG = "MAIN";
  39. //#define FLASH_GPIO GPIO_NUM_4
  40. bool Init_NVS_SDCard()
  41. {
  42. esp_err_t ret = nvs_flash_init();
  43. if (ret == ESP_ERR_NVS_NO_FREE_PAGES) {
  44. ESP_ERROR_CHECK(nvs_flash_erase());
  45. ret = nvs_flash_init();
  46. }
  47. ////////////////////////////////////////////////
  48. ESP_LOGI(TAG, "Using SDMMC peripheral");
  49. sdmmc_host_t host = SDMMC_HOST_DEFAULT();
  50. // This initializes the slot without card detect (CD) and write protect (WP) signals.
  51. // Modify slot_config.gpio_cd and slot_config.gpio_wp if your board has these signals.
  52. sdmmc_slot_config_t slot_config = SDMMC_SLOT_CONFIG_DEFAULT();
  53. // To use 1-line SD mode, uncomment the following line:
  54. #ifdef __SD_USE_ONE_LINE_MODE__
  55. slot_config.width = 1;
  56. #endif
  57. // GPIOs 15, 2, 4, 12, 13 should have external 10k pull-ups.
  58. // Internal pull-ups are not sufficient. However, enabling internal pull-ups
  59. // does make a difference some boards, so we do that here.
  60. gpio_set_pull_mode(GPIO_NUM_15, GPIO_PULLUP_ONLY); // CMD, needed in 4- and 1- line modes
  61. gpio_set_pull_mode(GPIO_NUM_2, GPIO_PULLUP_ONLY); // D0, needed in 4- and 1-line modes
  62. #ifndef __SD_USE_ONE_LINE_MODE__
  63. gpio_set_pull_mode(GPIO_NUM_4, GPIO_PULLUP_ONLY); // D1, needed in 4-line mode only
  64. gpio_set_pull_mode(GPIO_NUM_12, GPIO_PULLUP_ONLY); // D2, needed in 4-line mode only
  65. #endif
  66. gpio_set_pull_mode(GPIO_NUM_13, GPIO_PULLUP_ONLY); // D3, needed in 4- and 1-line modes
  67. // Options for mounting the filesystem.
  68. // If format_if_mount_failed is set to true, SD card will be partitioned and
  69. // formatted in case when mounting fails.
  70. esp_vfs_fat_sdmmc_mount_config_t mount_config = {
  71. .format_if_mount_failed = false,
  72. .max_files = 7, // anstatt 5 (2022-09-21)
  73. .allocation_unit_size = 16 * 1024
  74. };
  75. // Use settings defined above to initialize SD card and mount FAT filesystem.
  76. // Note: esp_vfs_fat_sdmmc_mount is an all-in-one convenience function.
  77. // Please check its source code and implement error recovery when developing
  78. // production applications.
  79. sdmmc_card_t* card;
  80. ret = esp_vfs_fat_sdmmc_mount("/sdcard", &host, &slot_config, &mount_config, &card);
  81. if (ret != ESP_OK) {
  82. if (ret == ESP_FAIL) {
  83. ESP_LOGE(TAG, "Failed to mount filesystem. "
  84. "If you want the card to be formatted, set format_if_mount_failed = true.");
  85. } else {
  86. ESP_LOGE(TAG, "Failed to initialize the card (%s). "
  87. "Make sure SD card lines have pull-up resistors in place.", esp_err_to_name(ret));
  88. }
  89. return false;
  90. }
  91. sdmmc_card_print_info(stdout, card);
  92. SaveSDCardInfo(card);
  93. return true;
  94. }
  95. void task_NoSDBlink(void *pvParameter)
  96. {
  97. gpio_pad_select_gpio(BLINK_GPIO);
  98. gpio_set_direction(BLINK_GPIO, GPIO_MODE_OUTPUT);
  99. TickType_t xDelay;
  100. xDelay = 100 / portTICK_PERIOD_MS;
  101. ESP_LOGD(TAG, "SD-Card could not be inialized - STOP THE PROGRAMM HERE");
  102. while (1)
  103. {
  104. gpio_set_level(BLINK_GPIO, 1);
  105. vTaskDelay( xDelay );
  106. gpio_set_level(BLINK_GPIO, 0);
  107. vTaskDelay( xDelay );
  108. }
  109. vTaskDelete(NULL); //Delete this task if it exits from the loop above
  110. }
  111. extern "C" void app_main(void)
  112. {
  113. TickType_t xDelay;
  114. bool initSucessful = true;
  115. ESP_LOGI(TAG, "\n\n\n\n\n"); // Add mark on log to see when it restarted
  116. PowerResetCamera();
  117. esp_err_t camStatus = Camera.InitCam();
  118. Camera.LightOnOff(false);
  119. xDelay = 2000 / portTICK_PERIOD_MS;
  120. ESP_LOGD(TAG, "After camera initialization: sleep for: %ldms", (long) xDelay);
  121. vTaskDelay( xDelay );
  122. if (!Init_NVS_SDCard())
  123. {
  124. xTaskCreate(&task_NoSDBlink, "task_NoSDBlink", configMINIMAL_STACK_SIZE * 64, NULL, tskIDLE_PRIORITY+1, NULL);
  125. return;
  126. };
  127. string versionFormated = "Branch: '" + std::string(GIT_BRANCH) + \
  128. "', Revision: " + std::string(GIT_REV) +", Date/Time: " + std::string(BUILD_TIME) + \
  129. ", Web UI: " + getHTMLversion();
  130. if (std::string(GIT_TAG) != "") { // We are on a tag, add it as prefix
  131. string versionFormated = "Tag: '" + std::string(GIT_TAG) + "', " + versionFormated;
  132. }
  133. ESP_LOGD(TAG, "=============================================================================================");
  134. ESP_LOGD(TAG, "%s", versionFormated.c_str());
  135. ESP_LOGD(TAG, "=============================================================================================");
  136. ESP_LOGD(TAG, "Reset reason: %s", getResetReason().c_str());
  137. CheckOTAUpdate();
  138. LogFile.CreateLogDirectories();
  139. CheckUpdate();
  140. /*
  141. int mk_ret = mkdir("/sdcard/new_fd_mkdir", 0775);
  142. ESP_LOGI(TAG, "mkdir ret %d", mk_ret);
  143. mk_ret = mkdir("/sdcard/new_fd_mkdir/test", 0775);
  144. ESP_LOGI(TAG, "mkdir ret %d", mk_ret);
  145. MakeDir("/sdcard/test2");
  146. MakeDir("/sdcard/test2/intern");
  147. */
  148. char *ssid = NULL, *passwd = NULL, *hostname = NULL, *ip = NULL, *gateway = NULL, *netmask = NULL, *dns = NULL;
  149. LoadWlanFromFile("/sdcard/wlan.ini", ssid, passwd, hostname, ip, gateway, netmask, dns);
  150. if (ssid != NULL && passwd != NULL)
  151. #ifdef __HIDE_PASSWORD
  152. ESP_LOGD(TAG, "WLan: %s, XXXXXX", ssid);
  153. #else
  154. ESP_LOGD(TAG, "WLan: %s, %s", ssid, passwd);
  155. #endif
  156. else
  157. ESP_LOGD(TAG, "No SSID and PASSWORD set!!!");
  158. if (hostname != NULL)
  159. ESP_LOGD(TAG, "Hostename: %s", hostname);
  160. else
  161. ESP_LOGD(TAG, "Hostname not set");
  162. if (ip != NULL && gateway != NULL && netmask != NULL)
  163. ESP_LOGD(TAG, "Fixed IP: %s, Gateway %s, Netmask %s", ip, gateway, netmask);
  164. if (dns != NULL)
  165. ESP_LOGD(TAG, "DNS IP: %s", dns);
  166. wifi_init_sta(ssid, passwd, hostname, ip, gateway, netmask, dns);
  167. xDelay = 2000 / portTICK_PERIOD_MS;
  168. ESP_LOGD(TAG, "main: sleep for: %ldms", (long) xDelay);
  169. vTaskDelay( xDelay );
  170. if (!setup_time()) {
  171. LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "NTP Initialization failed. Will restart in 5 minutes!");
  172. initSucessful = false;
  173. }
  174. setBootTime();
  175. LogFile.WriteToFile(ESP_LOG_INFO, TAG, "=============================================================================================");
  176. LogFile.WriteToFile(ESP_LOG_INFO, TAG, "=================================== Main Started ============================================");
  177. LogFile.WriteToFile(ESP_LOG_INFO, TAG, "=============================================================================================");
  178. LogFile.WriteToFile(ESP_LOG_INFO, TAG, versionFormated);
  179. LogFile.WriteToFile(ESP_LOG_INFO, TAG, "Reset reason: " + getResetReason());
  180. if (std::string(getHTMLversion()) != std::string(GIT_REV)) {
  181. LogFile.WriteToFile(ESP_LOG_WARN, TAG, "Web UI version does not match firmware version!");
  182. }
  183. std::string zw = gettimestring("%Y%m%d-%H%M%S");
  184. ESP_LOGD(TAG, "time %s", zw.c_str());
  185. size_t _hsize = getESPHeapSize();
  186. if (_hsize < 4000000)
  187. {
  188. std::string _zws = "Not enough PSRAM available. Expected 4.194.304 MByte - available: " + std::to_string(_hsize);
  189. _zws = _zws + "\nEither not initialized, too small (2MByte only) or not present at all. Firmware cannot start!!";
  190. LogFile.WriteToFile(ESP_LOG_ERROR, TAG, _zws);
  191. } else { // Bad Camera Status, retry init
  192. if (camStatus != ESP_OK) {
  193. LogFile.WriteToFile(ESP_LOG_WARN, TAG, "Failed to initialize camera module, retrying...");
  194. PowerResetCamera();
  195. esp_err_t camStatus = Camera.InitCam();
  196. Camera.LightOnOff(false);
  197. xDelay = 2000 / portTICK_PERIOD_MS;
  198. ESP_LOGD(TAG, "After camera initialization: sleep for: %ldms", (long) xDelay);
  199. vTaskDelay( xDelay );
  200. if (camStatus != ESP_OK) {
  201. LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Failed to initialize camera module. Will restart in 5 minutes!");
  202. LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Check that your camera module is working and connected properly!");
  203. initSucessful = false;
  204. }
  205. } else { // Test Camera
  206. camera_fb_t * fb = esp_camera_fb_get();
  207. if (!fb) {
  208. LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Camera Framebuffer cannot be initialzed. Will restart in 5 minutes!");
  209. initSucessful = false;
  210. }
  211. else {
  212. esp_camera_fb_return(fb);
  213. Camera.LightOnOff(false);
  214. }
  215. }
  216. }
  217. xDelay = 2000 / portTICK_PERIOD_MS;
  218. ESP_LOGD(TAG, "main: sleep for: %ldms", (long) xDelay*10);
  219. vTaskDelay( xDelay );
  220. ESP_LOGD(TAG, "starting servers");
  221. server = start_webserver();
  222. register_server_camera_uri(server);
  223. register_server_tflite_uri(server);
  224. register_server_file_uri(server, "/sdcard");
  225. register_server_ota_sdcard_uri(server);
  226. register_server_mqtt_uri(server);
  227. gpio_handler_create(server);
  228. ESP_LOGD(TAG, "vor reg server main");
  229. register_server_main_uri(server, "/sdcard");
  230. if (initSucessful) {
  231. LogFile.WriteToFile(ESP_LOG_INFO, TAG, "Initialization completed successfully!");
  232. ESP_LOGD(TAG, "vor do autostart");
  233. TFliteDoAutoStart();
  234. }
  235. else { // Initialization failed
  236. LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Initialization failed. Will restart in 5 minutes!");
  237. vTaskDelay(60*4000 / portTICK_RATE_MS); // Wait 4 minutes to give time to do an OTA or fetch the log
  238. LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Initialization failed. Will restart in 1 minute!");
  239. vTaskDelay(60*1000 / portTICK_RATE_MS); // Wait 1 minute to give time to do an OTA or fetch the log
  240. LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Initialization failed. Will restart now!");
  241. doReboot();
  242. }
  243. }