-
I'm using
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
The mentioned buffers should be fine to live in PSRAM since they are only accessed by the CPU. Smaller buffers should be fine (with some performance penalty) Since #2079 it's also possible to use some previously unavailable region in internal RAM as un-initialized memory (around 64k on most chips, even more on S2) |
Beta Was this translation helpful? Give feedback.
dram2
previously was only defined for ESP32 since there it is a "huge" chunk of memory. We now make the additional RAM available on all targets - on ESP32-S3 it's only as little as 64k but for applications which are already tight on memory that is a nice addition.Recent changes on the
main
branch removed the internal esp-wifi heap in favor of using global heap for esp-wifi and other parts of the application (all of this is currently unreleased and only available on the main branch)