Delete logger, Add littlefs init function

Signed-off-by: YoungSoo Shin <shinys000114@gmail.com>
This commit is contained in:
2025-09-25 17:17:31 +09:00
parent 23c72790ef
commit 7f6308bb6f
7 changed files with 62 additions and 221 deletions

View File

@@ -11,6 +11,7 @@
#include "nvs_flash.h"
#include "system.h"
#include "wifi.h"
#include "storage.h"
void app_main(void)
{
@@ -30,6 +31,8 @@ void app_main(void)
}
ESP_ERROR_CHECK(ret);
storage_init();
ESP_ERROR_CHECK(esp_netif_init());
ESP_ERROR_CHECK(esp_event_loop_create_default());