| 12345678910111213141516171819202122232425262728293031323334353637 |
- #include <esp_log.h>
- #include <esp_err.h>
- #include <nvs.h>
- #include <nvs_flash.h>
- #include <driver/gpio.h>
- #include <esp_event.h>
- #include "application.h"
- #include "system_info.h"
- #define TAG "main"
- #include <stdio.h>
- #include <string.h>
- #include <stdlib.h>
- #include "freertos/FreeRTOS.h"
- #include "freertos/task.h"
- #include "freertos/queue.h"
- extern "C" void app_main(void)
- {
- // 初始化默认事件循环
- ESP_ERROR_CHECK(esp_event_loop_create_default());
- // 初始化NVS闪存
- esp_err_t ret = nvs_flash_init();
- if (ret == ESP_ERR_NVS_NO_FREE_PAGES || ret == ESP_ERR_NVS_NEW_VERSION_FOUND) {
- ESP_LOGW(TAG, "Erasing NVS flash to fix corruption");
- ESP_ERROR_CHECK(nvs_flash_erase());
- ret = nvs_flash_init();
- }
- ESP_ERROR_CHECK(ret);
- // 启动应用程序(如果有)
- Application::GetInstance().Start();
- }
|