diff --git a/main/main.cc b/main/main.cc index ee9ab86..06d91ab 100755 --- a/main/main.cc +++ b/main/main.cc @@ -8,8 +8,6 @@ #include "application.h" #include "system_info.h" -#include - #define TAG "main" extern "C" void app_main(void) @@ -27,17 +25,6 @@ extern "C" void app_main(void) } ESP_ERROR_CHECK(ret); - // Detecting PSRAM - if (esp_psram_is_initialized()) - { - size_t psram_size = esp_psram_get_size(); - ESP_LOGI("PSRAM", "PSRAM is available and initialized. Total size: %zu bytes", psram_size); - } - else - { - ESP_LOGE("PSRAM", "PSRAM not found or not initialized."); - } - // Launch the application auto &app = Application::GetInstance(); app.Start();