Skip to content

Commit

Permalink
don't abort just return with fail
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason2866 authored Jan 27, 2025
1 parent 3a77e1d commit 99107d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/esp_psram/esp32/esp_psram_impl_quad.c
Original file line number Diff line number Diff line change
Expand Up @@ -904,7 +904,7 @@ esp_err_t IRAM_ATTR esp_psram_impl_enable(void) //psram init
psram_io.psram_cs_io = D0WDR2_V3_PSRAM_CS_IO;
} else {
ESP_EARLY_LOGE(TAG, "Not a valid or known package id: %" PRIu32, pkg_ver);
abort();
return ESP_FAIL;
}
s_psram_cs_io = psram_io.psram_cs_io;

Expand Down

0 comments on commit 99107d9

Please sign in to comment.