| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300 |
- #include <string>
- #include "freertos/FreeRTOS.h"
- #include "freertos/task.h"
- #include "freertos/event_groups.h"
- #include "driver/gpio.h"
- #include "sdkconfig.h"
- // SD-Card ////////////////////
- #include "nvs_flash.h"
- #include "esp_vfs_fat.h"
- #include "sdmmc_cmd.h"
- #include "driver/sdmmc_host.h"
- #include "driver/sdmmc_defs.h"
- ///////////////////////////////
- #include "ClassLogFile.h"
- #include "connect_wlan.h"
- #include "read_wlanini.h"
- #include "server_main.h"
- #include "server_tflite.h"
- #include "server_file.h"
- #include "server_ota.h"
- #include "time_sntp.h"
- #include "ClassControllCamera.h"
- #include "server_main.h"
- #include "server_camera.h"
- #include "server_mqtt.h"
- #include "Helper.h"
- extern const char* GIT_TAG;
- extern const char* GIT_REV;
- extern const char* GIT_BRANCH;
- extern const char* BUILD_TIME;
- extern std::string getHTMLversion(void);
- extern std::string getHTMLcommit(void);
- #define __HIDE_PASSWORD
- // #include "jomjol_WS2812Slow.h"
- #include "SmartLeds.h"
- #define __SD_USE_ONE_LINE_MODE__
- #include "server_GPIO.h"
- #define BLINK_GPIO GPIO_NUM_33
- static const char *TAG = "MAIN";
- //#define FLASH_GPIO GPIO_NUM_4
- bool Init_NVS_SDCard()
- {
- esp_err_t ret = nvs_flash_init();
- if (ret == ESP_ERR_NVS_NO_FREE_PAGES) {
- ESP_ERROR_CHECK(nvs_flash_erase());
- ret = nvs_flash_init();
- }
- ////////////////////////////////////////////////
- ESP_LOGI(TAG, "Using SDMMC peripheral");
- sdmmc_host_t host = SDMMC_HOST_DEFAULT();
- // This initializes the slot without card detect (CD) and write protect (WP) signals.
- // Modify slot_config.gpio_cd and slot_config.gpio_wp if your board has these signals.
- sdmmc_slot_config_t slot_config = SDMMC_SLOT_CONFIG_DEFAULT();
- // To use 1-line SD mode, uncomment the following line:
- #ifdef __SD_USE_ONE_LINE_MODE__
- slot_config.width = 1;
- #endif
- // GPIOs 15, 2, 4, 12, 13 should have external 10k pull-ups.
- // Internal pull-ups are not sufficient. However, enabling internal pull-ups
- // does make a difference some boards, so we do that here.
- gpio_set_pull_mode(GPIO_NUM_15, GPIO_PULLUP_ONLY); // CMD, needed in 4- and 1- line modes
- gpio_set_pull_mode(GPIO_NUM_2, GPIO_PULLUP_ONLY); // D0, needed in 4- and 1-line modes
- #ifndef __SD_USE_ONE_LINE_MODE__
- gpio_set_pull_mode(GPIO_NUM_4, GPIO_PULLUP_ONLY); // D1, needed in 4-line mode only
- gpio_set_pull_mode(GPIO_NUM_12, GPIO_PULLUP_ONLY); // D2, needed in 4-line mode only
- #endif
- gpio_set_pull_mode(GPIO_NUM_13, GPIO_PULLUP_ONLY); // D3, needed in 4- and 1-line modes
- // Options for mounting the filesystem.
- // If format_if_mount_failed is set to true, SD card will be partitioned and
- // formatted in case when mounting fails.
- esp_vfs_fat_sdmmc_mount_config_t mount_config = {
- .format_if_mount_failed = false,
- .max_files = 7, // anstatt 5 (2022-09-21)
- .allocation_unit_size = 16 * 1024
- };
- // Use settings defined above to initialize SD card and mount FAT filesystem.
- // Note: esp_vfs_fat_sdmmc_mount is an all-in-one convenience function.
- // Please check its source code and implement error recovery when developing
- // production applications.
- sdmmc_card_t* card;
- ret = esp_vfs_fat_sdmmc_mount("/sdcard", &host, &slot_config, &mount_config, &card);
- if (ret != ESP_OK) {
- if (ret == ESP_FAIL) {
- ESP_LOGE(TAG, "Failed to mount filesystem. "
- "If you want the card to be formatted, set format_if_mount_failed = true.");
- } else {
- ESP_LOGE(TAG, "Failed to initialize the card (%s). "
- "Make sure SD card lines have pull-up resistors in place.", esp_err_to_name(ret));
- }
- return false;
- }
- sdmmc_card_print_info(stdout, card);
- SaveSDCardInfo(card);
- return true;
- }
- void task_NoSDBlink(void *pvParameter)
- {
- gpio_pad_select_gpio(BLINK_GPIO);
- gpio_set_direction(BLINK_GPIO, GPIO_MODE_OUTPUT);
-
- TickType_t xDelay;
- xDelay = 100 / portTICK_PERIOD_MS;
- ESP_LOGD(TAG, "SD-Card could not be inialized - STOP THE PROGRAMM HERE");
- while (1)
- {
- gpio_set_level(BLINK_GPIO, 1);
- vTaskDelay( xDelay );
- gpio_set_level(BLINK_GPIO, 0);
- vTaskDelay( xDelay );
- }
- vTaskDelete(NULL); //Delete this task if it exits from the loop above
- }
- extern "C" void app_main(void)
- {
- TickType_t xDelay;
- bool initSucessful = true;
- ESP_LOGI(TAG, "\n\n\n\n\n"); // Add mark on log to see when it restarted
-
- PowerResetCamera();
- esp_err_t camStatus = Camera.InitCam();
- Camera.LightOnOff(false);
- xDelay = 2000 / portTICK_PERIOD_MS;
- ESP_LOGD(TAG, "After camera initialization: sleep for: %ldms", (long) xDelay);
- vTaskDelay( xDelay );
- if (!Init_NVS_SDCard())
- {
- xTaskCreate(&task_NoSDBlink, "task_NoSDBlink", configMINIMAL_STACK_SIZE * 64, NULL, tskIDLE_PRIORITY+1, NULL);
- return;
- };
- string versionFormated = "Branch: '" + std::string(GIT_BRANCH) + \
- "', Revision: " + std::string(GIT_REV) +", Date/Time: " + std::string(BUILD_TIME) + \
- ", Web UI: " + getHTMLversion();
- if (std::string(GIT_TAG) != "") { // We are on a tag, add it as prefix
- string versionFormated = "Tag: '" + std::string(GIT_TAG) + "', " + versionFormated;
- }
- LogFile.CreateLogDirectories();
- LogFile.WriteToFile(ESP_LOG_INFO, TAG, "=================================================");
- LogFile.WriteToFile(ESP_LOG_INFO, TAG, "==================== Startup ====================");
- LogFile.WriteToFile(ESP_LOG_INFO, TAG, "=================================================");
- LogFile.WriteToFile(ESP_LOG_INFO, TAG, versionFormated);
- LogFile.WriteToFile(ESP_LOG_INFO, TAG, "Reset reason: " + getResetReason());
- CheckOTAUpdate();
- CheckUpdate();
- char *ssid = NULL, *passwd = NULL, *hostname = NULL, *ip = NULL, *gateway = NULL, *netmask = NULL, *dns = NULL;
- LoadWlanFromFile("/sdcard/wlan.ini", ssid, passwd, hostname, ip, gateway, netmask, dns);
- if (ssid != NULL && passwd != NULL)
- #ifdef __HIDE_PASSWORD
- ESP_LOGD(TAG, "WLan: %s, XXXXXX", ssid);
- #else
- ESP_LOGD(TAG, "WLan: %s, %s", ssid, passwd);
- #endif
- else
- ESP_LOGD(TAG, "No SSID and PASSWORD set!!!");
- if (hostname != NULL)
- ESP_LOGD(TAG, "Hostname: %s", hostname);
- else
- ESP_LOGD(TAG, "Hostname not set");
- if (ip != NULL && gateway != NULL && netmask != NULL)
- ESP_LOGD(TAG, "Fixed IP: %s, Gateway %s, Netmask %s", ip, gateway, netmask);
- if (dns != NULL)
- ESP_LOGD(TAG, "DNS IP: %s", dns);
- wifi_init_sta(ssid, passwd, hostname, ip, gateway, netmask, dns);
- xDelay = 2000 / portTICK_PERIOD_MS;
- ESP_LOGD(TAG, "main: sleep for: %ldms", (long) xDelay);
- vTaskDelay( xDelay );
- if (!setup_time()) {
- LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "NTP Initialization failed!");
- }
- setBootTime();
- LogFile.WriteToFile(ESP_LOG_INFO, TAG, "=================================================");
- LogFile.WriteToFile(ESP_LOG_INFO, TAG, "================== Main Started =================");
- LogFile.WriteToFile(ESP_LOG_INFO, TAG, "=================================================");
- if (getHTMLcommit().substr(0, 7) != std::string(GIT_REV).substr(0, 7)) { // Compare the first 7 characters of both hashes
- LogFile.WriteToFile(ESP_LOG_WARN, TAG, std::string("Web UI version (") + getHTMLcommit() + ") does not match firmware version (" + std::string(GIT_REV) + ") !");
- }
- std::string zw = gettimestring("%Y%m%d-%H%M%S");
- ESP_LOGD(TAG, "time %s", zw.c_str());
- size_t _hsize = getESPHeapSize();
- if (_hsize < 4000000) // Check for a bit less than 4 MB (but clearly over 2 MB)
- {
- std::string _zws = "Not enough PSRAM available. Expected around 4 MBytes - available: " + std::to_string((float)_hsize/1024/1024) + " MBytes!";
- _zws = _zws + "\nEither not initialized, too small (2 MByte only) or not present at all. Firmware cannot start!!";
- LogFile.WriteToFile(ESP_LOG_ERROR, TAG, _zws);
- } else { // Bad Camera Status, retry init
- if (camStatus != ESP_OK) {
- LogFile.WriteToFile(ESP_LOG_WARN, TAG, "Failed to initialize camera module, retrying...");
- PowerResetCamera();
- esp_err_t camStatus = Camera.InitCam();
- Camera.LightOnOff(false);
- xDelay = 2000 / portTICK_PERIOD_MS;
- ESP_LOGD(TAG, "After camera initialization: sleep for: %ldms", (long) xDelay);
- vTaskDelay( xDelay );
- if (camStatus != ESP_OK) {
- LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Failed to initialize camera module!");
- LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Check that your camera module is working and connected properly!");
- initSucessful = false;
- }
- } else { // Test Camera
- camera_fb_t * fb = esp_camera_fb_get();
- if (!fb) {
- LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Camera Framebuffer cannot be initialized!");
- initSucessful = false;
- }
- else {
- esp_camera_fb_return(fb);
- Camera.LightOnOff(false);
- }
- }
- }
- xDelay = 2000 / portTICK_PERIOD_MS;
- ESP_LOGD(TAG, "main: sleep for: %ldms", (long) xDelay*10);
- vTaskDelay( xDelay );
- ESP_LOGD(TAG, "starting servers");
- server = start_webserver();
- register_server_camera_uri(server);
- register_server_tflite_uri(server);
- register_server_file_uri(server, "/sdcard");
- register_server_ota_sdcard_uri(server);
- register_server_mqtt_uri(server);
- gpio_handler_create(server);
- ESP_LOGD(TAG, "vor reg server main");
- register_server_main_uri(server, "/sdcard");
- if (initSucessful) {
- LogFile.WriteToFile(ESP_LOG_INFO, TAG, "Initialization completed successfully!");
- ESP_LOGD(TAG, "vor do autostart");
- TFliteDoAutoStart();
- }
- else { // Initialization failed
- LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Initialization failed. Will restart in 5 minutes!");
- vTaskDelay(60*4000 / portTICK_RATE_MS); // Wait 4 minutes to give time to do an OTA or fetch the log
- LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Initialization failed. Will restart in 1 minute!");
- vTaskDelay(60*1000 / portTICK_RATE_MS); // Wait 1 minute to give time to do an OTA or fetch the log
- LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Initialization failed. Will restart now!");
- doReboot();
- }
- }
|