mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
Merge branch 'bugfix/esp32_pico_v3_2_chip_info_v5.1' into 'release/v5.1'
system: fix esp32 chip info not listing esp32 pico v3-02 as having embedded spiram (v5.1) See merge request espressif/esp-idf!23393
This commit is contained in:
commit
e104fa1904
@ -35,7 +35,8 @@ void esp_chip_info(esp_chip_info_t* out_info)
|
||||
package == EFUSE_RD_CHIP_VER_PKG_ESP32PICOV302) {
|
||||
out_info->features |= CHIP_FEATURE_EMB_FLASH;
|
||||
}
|
||||
if(package == EFUSE_RD_CHIP_VER_PKG_ESP32D0WDR2V3) {
|
||||
if(package == EFUSE_RD_CHIP_VER_PKG_ESP32D0WDR2V3 ||
|
||||
package == EFUSE_RD_CHIP_VER_PKG_ESP32PICOV302) {
|
||||
out_info->features |= CHIP_FEATURE_EMB_PSRAM;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user