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; }