Skip to content

Commit

Permalink
system: fix esp32 chip info not listing esp32 pico v3-02 as having em…
Browse files Browse the repository at this point in the history
…bedded spiram

Closes #11233
  • Loading branch information
ESP-Marius committed Apr 24, 2023
1 parent 3cec3a0 commit 67f7c2f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion components/esp_hw_support/port/esp32/chip_info.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,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;
}
}
Expand Down

0 comments on commit 67f7c2f

Please sign in to comment.