Replies: 1 comment
-
Building more recet Micropython image is not that hard. I was able to get it running in 2 hours on Windows + WSL from scratch and little previous experience.
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I have flashed a ESP32-WROOM-32E-N8R2 (ESP32-D0WDR2-V3 with 2 MB of SPI RAM) with the latest esp32/GENERIC_SPIRAM Firmware v1.19.1 (2022-06-18) .bin.
Up on boot I get the following output:
After that, the device restarts endlessly.
I have tracked the error message
E (651) psram: Not a valid or known package id: 7
down in the esp-idf in the file esp_psram_impl_quad.cBut the if-statement for the ESP32-D0WDR2-V3 is present in line 873:
And EFUSE_RD_CHIP_VER_PKG_ESP32D0WDR2V3 is defined as 7 in efuse_reg.h.
So I searched the commit where the if-statement was added and it is ce1ee3d from Nov 12, 2021. The name of the file
esp_psram_impl_quad.c
wasspiram_psram.c
at this time. The moduleesp_psram_impl_quad.o
is not found in the map-file esp32spiram-20220618-v1.19.1.map butspiram_psram.o
is.Is the current
esp32spiram-20220618-v1.19.1
built with a esp-idf from earlier than Nov 12, 2021 or am I missing something?I don't know much about building micropython, but I want to use the SPI RAM of the ESP32-WROOM-32E-N8R2. Does someone has a suggestion?
Beta Was this translation helpful? Give feedback.
All reactions