Skip to content

Commit ece4ee3

Browse files
committed
Merge branch 'fix/p4_lsc_v100_warning' into 'master'
fix(isp_lsc): fixed warning description for p4 v1.0 See merge request espressif/esp-idf!34593
2 parents df6e92e + cb227eb commit ece4ee3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

components/esp_driver_isp/src/isp_lsc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ esp_err_t esp_isp_lsc_configure(isp_proc_handle_t isp_proc, const esp_isp_lsc_co
5656
#if CONFIG_IDF_TARGET_ESP32P4
5757
unsigned chip_version = efuse_hal_chip_revision();
5858
if (!ESP_CHIP_REV_ABOVE(chip_version, 100)) {
59-
ESP_RETURN_ON_FALSE(false, ESP_ERR_NOT_SUPPORTED, TAG, "LSC is not supported on ESP32P4 chips prior than ECO2");
59+
ESP_RETURN_ON_FALSE(false, ESP_ERR_NOT_SUPPORTED, TAG, "LSC is not supported on ESP32P4 chips prior than v1.0");
6060
}
6161
#endif
6262

components/spi_flash/flash_ops.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ esp_err_t IRAM_ATTR esp_mspi_32bit_address_flash_feature_check(void)
311311
// IDF-10019
312312
unsigned chip_version = efuse_hal_chip_revision();
313313
if (unlikely(!ESP_CHIP_REV_ABOVE(chip_version, 1))) {
314-
ESP_EARLY_LOGE(TAG, "32bit address (flash over 16MB) has high risk on ESP32P4 ECO0");
314+
ESP_EARLY_LOGE(TAG, "32bit address (flash over 16MB) has high risk on ESP32P4 v0.0");
315315
return ESP_ERR_NOT_SUPPORTED;
316316
}
317317
#endif

0 commit comments

Comments
 (0)