-
Notifications
You must be signed in to change notification settings - Fork 0
Build & Formatting #3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Seems like it's a problem of integrating external SPI RAM into local memory map: https://community.platformio.org/t/a-question-about-board-configuration-files-with-esp32/21877/6 Solution seems to be a menuconfig tool that doesn't work for me. The ominous sdkconfig file from the HUB75 examples might be a way. |
https://docs.platformio.org/en/latest/platforms/espressif32.html#external-ram-psram -> sadly, same size as before. |
"Auto-detected Flash size: 4MB" from upload log |
Getting close now: RAM: [== ] 15.9% (used 52152 bytes from 327680 bytes) |
Went over now. Seems like partition tables are used to increase usable space: platformio/platform-espressif32#309 |
Great overview in espressif/arduino-esp32#4551 (comment), seems like the full 4MB are already used, it's just partitioned into the different areas. Using |
build_flags = are great, but they seem to be a board-specific thing and are set already. 4MB of this board seems to be onboard only, so this was a pointless search. Use void printRAM(){ to check for size. |
The text was updated successfully, but these errors were encountered: