From cb227eb26056e22f9422b92a2ccb089eac2174ae Mon Sep 17 00:00:00 2001 From: "Michael (XIAO Xufeng)" Date: Fri, 1 Nov 2024 16:02:49 +0800 Subject: [PATCH] fix(isp_lsc): fixed warning description for p4 v1.0 --- components/esp_driver_isp/src/isp_lsc.c | 2 +- components/spi_flash/flash_ops.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/components/esp_driver_isp/src/isp_lsc.c b/components/esp_driver_isp/src/isp_lsc.c index a1b8e4c113..8ebd459555 100644 --- a/components/esp_driver_isp/src/isp_lsc.c +++ b/components/esp_driver_isp/src/isp_lsc.c @@ -56,7 +56,7 @@ esp_err_t esp_isp_lsc_configure(isp_proc_handle_t isp_proc, const esp_isp_lsc_co #if CONFIG_IDF_TARGET_ESP32P4 unsigned chip_version = efuse_hal_chip_revision(); if (!ESP_CHIP_REV_ABOVE(chip_version, 100)) { - ESP_RETURN_ON_FALSE(false, ESP_ERR_NOT_SUPPORTED, TAG, "LSC is not supported on ESP32P4 chips prior than ECO2"); + ESP_RETURN_ON_FALSE(false, ESP_ERR_NOT_SUPPORTED, TAG, "LSC is not supported on ESP32P4 chips prior than v1.0"); } #endif diff --git a/components/spi_flash/flash_ops.c b/components/spi_flash/flash_ops.c index 9bf28ce34d..142016920e 100644 --- a/components/spi_flash/flash_ops.c +++ b/components/spi_flash/flash_ops.c @@ -311,7 +311,7 @@ esp_err_t IRAM_ATTR esp_mspi_32bit_address_flash_feature_check(void) // IDF-10019 unsigned chip_version = efuse_hal_chip_revision(); if (unlikely(!ESP_CHIP_REV_ABOVE(chip_version, 1))) { - ESP_EARLY_LOGE(TAG, "32bit address (flash over 16MB) has high risk on ESP32P4 ECO0"); + ESP_EARLY_LOGE(TAG, "32bit address (flash over 16MB) has high risk on ESP32P4 v0.0"); return ESP_ERR_NOT_SUPPORTED; } #endif