Skip to content

Commit 266229e

Browse files
committed
Merge branch 'bugfix/esp32_pico_v3_2_chip_info' into 'master'
system: fix esp32 chip info not listing esp32 pico v3-02 as having embedded spiram Closes IDFGH-9938 See merge request espressif/esp-idf!23383
2 parents 8be8a1c + 895c21c commit 266229e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

components/esp_hw_support/port/esp32/chip_info.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ void esp_chip_info(esp_chip_info_t* out_info)
3535
package == EFUSE_RD_CHIP_VER_PKG_ESP32PICOV302) {
3636
out_info->features |= CHIP_FEATURE_EMB_FLASH;
3737
}
38-
if(package == EFUSE_RD_CHIP_VER_PKG_ESP32D0WDR2V3) {
38+
if(package == EFUSE_RD_CHIP_VER_PKG_ESP32D0WDR2V3 ||
39+
package == EFUSE_RD_CHIP_VER_PKG_ESP32PICOV302) {
3940
out_info->features |= CHIP_FEATURE_EMB_PSRAM;
4041
}
4142
}

0 commit comments

Comments
 (0)