You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have updated my IDF branch (master or release) to the latest version and checked that the issue is present there.
I have searched the issue tracker for a similar issue and not found a similar issue.
General issue report
Quite simply, I would expect the esp_chip_info() to return CHIP_FEATURE_EMB_PSRAM bit set for ESP32-PICO-V3-02 (EFUSE_RD_CHIP_VER_PKG_ESP32PICOV302) as it has 2MB PSRAM included in same package. But this bit is only set for EFUSE_RD_CHIP_VER_PKG_ESP32D0WDR2V3 as we can see here:
github-actionsbot
changed the title
CHIP_FEATURE_EMB_PSRAM not set on ESP32-PICO-V3-02
CHIP_FEATURE_EMB_PSRAM not set on ESP32-PICO-V3-02 (IDFGH-9938)
Apr 20, 2023
Answers checklist.
General issue report
Quite simply, I would expect the
esp_chip_info()
to return CHIP_FEATURE_EMB_PSRAM bit set for ESP32-PICO-V3-02 (EFUSE_RD_CHIP_VER_PKG_ESP32PICOV302) as it has 2MB PSRAM included in same package. But this bit is only set for EFUSE_RD_CHIP_VER_PKG_ESP32D0WDR2V3 as we can see here:esp-idf/components/esp_hw_support/port/esp32/chip_info.c
Lines 31 to 40 in df9310a
In case the Embedded PSRAM feature bit has different meaning then it would be good to clarify that in documentation.
Edit:
The esptool (IDF v4.4.4) does report Embedded PSRAM correctly, so it really seems like the issue in
esp_chip_info()
:in which case I suppose correct if statement would be:
The text was updated successfully, but these errors were encountered: