Merge branch 'fix/esp_psram_init_fix_v6.0' into 'release/v6.0'

fix(esp_psram): repeated call to init should return invalid state error (v6.0)

See merge request espressif/esp-idf!50274
This commit is contained in:
Marius Vikhammer
2026-07-06 16:28:07 +08:00
2 changed files with 5 additions and 0 deletions

View File

@@ -455,6 +455,10 @@ esp_err_t esp_psram_chip_init(void)
esp_err_t esp_psram_init(void)
{
if (s_psram_ctx.is_initialised) {
return ESP_ERR_INVALID_STATE;
}
esp_err_t ret = ESP_FAIL;
if (!s_psram_ctx.is_chip_initialised) {

View File

@@ -17,6 +17,7 @@ TEST_CASE("test psram no boot init", "[psram_no_boot_init]")
#endif /* CONFIG_SPIRAM_PRE_CONFIGURE_MEMORY_PROTECTION */
TEST_ESP_OK(esp_psram_init());
TEST_ESP_ERR(ESP_ERR_INVALID_STATE, esp_psram_init());
#if CONFIG_SPIRAM_PRE_CONFIGURE_MEMORY_PROTECTION
size_t final_psram_heap = esp_psram_get_heap_size_to_protect();