mirror of
https://github.com/espressif/esp-idf.git
synced 2026-08-18 06:35:35 +03:00
fix(esp_psram): repeated call to init should return invalid state error
Closes https://github.com/espressif/esp-idf/issues/18722
This commit is contained in:
@@ -461,6 +461,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) {
|
||||
|
||||
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user