-
I need to free memory, is it possible to use PSRAM instead of the standard heap for esp-mbedtls? |
Beta Was this translation helpful? Give feedback.
Answered by
bjoernQ
Nov 15, 2024
Replies: 1 comment 8 replies
-
For now, In general it should be fine if |
Beta Was this translation helpful? Give feedback.
8 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes it's also available on S3 now (since esp-hal 0.21.0) - it's internal RAM which is used by the bootloader during boot.
You could reduce the allocation area in
dram1
and have more space for the stack thenesp-alloc
will try the first region which qualifies for the required type of memory and tries the next region if it fails."Normal" allocations don't require anything special which means they will first "eat up" the first added region first