From 7bff9f9d2892a4281cfb6e0a48b13e628d22fa2f Mon Sep 17 00:00:00 2001 From: "Michael (XIAO Xufeng)" Date: Sun, 28 Apr 2024 15:01:25 +0800 Subject: [PATCH] feat(esp32h2): add development support option for v1.0 chips --- components/esp_hw_support/port/esp32h2/Kconfig.hw_support | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/components/esp_hw_support/port/esp32h2/Kconfig.hw_support b/components/esp_hw_support/port/esp32h2/Kconfig.hw_support index f94d5c930f..f5678dfd29 100644 --- a/components/esp_hw_support/port/esp32h2/Kconfig.hw_support +++ b/components/esp_hw_support/port/esp32h2/Kconfig.hw_support @@ -39,9 +39,14 @@ config ESP_REV_MIN_FULL config ESP32H2_REV_MAX_FULL int - default 99 + default 199 if ESP32H2_REV100_DEVELOPMENT + default 99 if !ESP32H2_REV100_DEVELOPMENT # keep in sync the "Maximum Supported Revision" description with this value config ESP_REV_MAX_FULL int default ESP32H2_REV_MAX_FULL + +config ESP32H2_REV100_DEVELOPMENT + bool "Develop on ESP32-H2 v1.0 and above (Preview)" + default y if IDF_CI_BUILD