From 05caca8cdd390219817ae605670924d88f0b393c Mon Sep 17 00:00:00 2001 From: Jiang Guang Ming Date: Fri, 2 Aug 2024 11:45:46 +0800 Subject: [PATCH] feat(esp_hw_support): Support esp32c2 rev2.0 chip --- components/esp_hw_support/port/esp32c2/Kconfig.hw_support | 3 +++ 1 file changed, 3 insertions(+) diff --git a/components/esp_hw_support/port/esp32c2/Kconfig.hw_support b/components/esp_hw_support/port/esp32c2/Kconfig.hw_support index 18a6f608ef..4bfc5790fd 100644 --- a/components/esp_hw_support/port/esp32c2/Kconfig.hw_support +++ b/components/esp_hw_support/port/esp32c2/Kconfig.hw_support @@ -13,12 +13,15 @@ choice ESP32C2_REV_MIN bool "Rev v1.0 (ECO1)" config ESP32C2_REV_MIN_1_1 bool "Rev v1.1 (ECO2)" + config ESP32C2_REV_MIN_200 + bool "Rev v2.0 (ECO4)" endchoice config ESP32C2_REV_MIN_FULL int default 100 if ESP32C2_REV_MIN_1 default 101 if ESP32C2_REV_MIN_1_1 + default 200 if ESP32C2_REV_MIN_200 config ESP_REV_MIN_FULL int