From 8d68ba0b47b75e3b1f764045758da208ff86cda7 Mon Sep 17 00:00:00 2001 From: Xiao Xufeng Date: Thu, 20 Nov 2025 14:02:53 +0800 Subject: [PATCH 1/2] feat(hw_support): add config version for c5 v1.2 --- components/esp_hw_support/port/esp32c5/Kconfig.hw_support | 3 +++ 1 file changed, 3 insertions(+) diff --git a/components/esp_hw_support/port/esp32c5/Kconfig.hw_support b/components/esp_hw_support/port/esp32c5/Kconfig.hw_support index f5bc18b3b7..d90eb136f3 100644 --- a/components/esp_hw_support/port/esp32c5/Kconfig.hw_support +++ b/components/esp_hw_support/port/esp32c5/Kconfig.hw_support @@ -11,11 +11,14 @@ choice ESP32C5_REV_MIN config ESP32C5_REV_MIN_100 bool "Rev v1.0 (ECO2)" + config ESP32C5_REV_MIN_102 + bool "Rev v1.2" endchoice config ESP32C5_REV_MIN_FULL int default 100 if ESP32C5_REV_MIN_100 + default 102 if ESP32C5_REV_MIN_102 config ESP_REV_MIN_FULL int From e2fa2a4719788fc2e7c062542acf56971c9b7a30 Mon Sep 17 00:00:00 2001 From: Xiao Xufeng Date: Thu, 20 Nov 2025 14:03:08 +0800 Subject: [PATCH 2/2] feat(hw_support): add config version for c61 v1.1 --- components/esp_hw_support/port/esp32c61/Kconfig.hw_support | 3 +++ 1 file changed, 3 insertions(+) diff --git a/components/esp_hw_support/port/esp32c61/Kconfig.hw_support b/components/esp_hw_support/port/esp32c61/Kconfig.hw_support index 71e247da35..754f14c975 100644 --- a/components/esp_hw_support/port/esp32c61/Kconfig.hw_support +++ b/components/esp_hw_support/port/esp32c61/Kconfig.hw_support @@ -11,11 +11,14 @@ choice ESP32C61_REV_MIN config ESP32C61_REV_MIN_100 bool "Rev v1.0" + config ESP32C61_REV_MIN_101 + bool "Rev v1.1" endchoice config ESP32C61_REV_MIN_FULL int default 100 if ESP32C61_REV_MIN_100 + default 101 if ESP32C61_REV_MIN_101 config ESP_REV_MIN_FULL int