Replies: 1 comment 14 replies
-
Regarding PSRAM the diff doesn't show relevant changes: v0.21.1...v0.22.0 Regarding the rom-functions the migration guide chapter is here: https://github.com/esp-rs/esp-hal/blob/main/esp-wifi/MIGRATING-0.10.md#no-need-to-include-rom_functionsx-manually |
Beta Was this translation helpful? Give feedback.
14 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I migrated an application I'm developing for
esp32s3
, to 0.22 .To get it to compile it was all technicalities as in the migration instructions.
To get it to link I had to remove the link with
rom_functions.x
, I didn't see it documented anywhere but it wasn't found and linked without it.When I run the code it starts and hangs in
init_psram
. There isn't much going on before that initialization, this is all the code that runs:The log output that comes out is as below, and then the program hangs and doesn't continue further (so "Initialized psram" log isn't reached).
Anything changed with psram initialization?
Beta Was this translation helpful? Give feedback.
All reactions