From 7cd7056341f37ecae94cedb5df7e9656f8105f19 Mon Sep 17 00:00:00 2001 From: Marius Vikhammer Date: Mon, 14 Nov 2022 10:11:18 +0800 Subject: [PATCH] hw-support: update C2 chip info to reflect that esp8684 has embedded flash Closes https://github.com/espressif/esp-idf/issues/10175 --- components/esp_hw_support/port/esp32c2/chip_info.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/esp_hw_support/port/esp32c2/chip_info.c b/components/esp_hw_support/port/esp32c2/chip_info.c index 827e76aa66..74057a5f70 100644 --- a/components/esp_hw_support/port/esp32c2/chip_info.c +++ b/components/esp_hw_support/port/esp32c2/chip_info.c @@ -14,5 +14,5 @@ void esp_chip_info(esp_chip_info_t *out_info) out_info->model = CHIP_ESP32C2; out_info->revision = efuse_hal_chip_revision(); out_info->cores = 1; - out_info->features = CHIP_FEATURE_WIFI_BGN | CHIP_FEATURE_BLE; + out_info->features = CHIP_FEATURE_WIFI_BGN | CHIP_FEATURE_BLE | CHIP_FEATURE_EMB_FLASH; }