From 1dea28a8c9d5f8dd16786806b5993f38e8c80779 Mon Sep 17 00:00:00 2001 From: Xiao Xufeng Date: Fri, 20 Dec 2024 03:29:48 +0800 Subject: [PATCH] feat(soc): increase c2 max supported version --- .../esp_hw_support/port/esp32c2/Kconfig.hw_support | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/components/esp_hw_support/port/esp32c2/Kconfig.hw_support b/components/esp_hw_support/port/esp32c2/Kconfig.hw_support index 59107a9442..d34f2e1208 100644 --- a/components/esp_hw_support/port/esp32c2/Kconfig.hw_support +++ b/components/esp_hw_support/port/esp32c2/Kconfig.hw_support @@ -31,7 +31,7 @@ config ESP_REV_MIN_FULL # MAX Revision # - comment "Maximum Supported ESP32-C2 Revision (Rev v1.99)" + comment "Maximum Supported ESP32-C2 Revision (Rev v2.99)" # Maximum revision that IDF supports. # It can not be changed by user. # Only Espressif can change it when a new version will be supported in IDF. @@ -39,14 +39,9 @@ config ESP_REV_MIN_FULL config ESP32C2_REV_MAX_FULL int - default 199 + default 299 # keep in sync the "Maximum Supported Revision" description with this value -config ESP32C2_REV2_DEVELOPMENT - bool "Develop on ESP32-C2 v2.0 (Preview)" - default y if IDF_CI_BUILD - config ESP_REV_MAX_FULL int - default 299 if ESP32C2_REV2_DEVELOPMENT - default ESP32C2_REV_MAX_FULL if !ESP32C2_REV2_DEVELOPMENT + default ESP32C2_REV_MAX_FULL