Skip to content

Commit

Permalink
Merge branch 'bugfix/esp32_pico_v3_2_chip_info_v4.4' into 'release/v4.4'
Browse files Browse the repository at this point in the history
system: fix esp32 chip info not listing esp32 pico v3-02 as having embedded spiram (v4.4)

See merge request espressif/esp-idf!23395
  • Loading branch information
ESP-Marius committed Jun 8, 2023
2 parents 92549f5 + 67f7c2f commit 63dfda0
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 63dfda0

Please sign in to comment.