remove PSRAM log

This commit is contained in:
2025-09-12 15:07:34 +08:00
parent f763ae05dc
commit 78f6d82c48

View File

@@ -8,8 +8,6 @@
#include "application.h"
#include "system_info.h"
#include <esp_psram.h>
#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();