Re: Largest contiguous RAM for HEAP
Posted: Wed Oct 18, 2023 9:23 am
If you are going to use the IRAM memory there are limitation that you must be aware off. https://esp32.com/viewtopic.php?t=23891#p94825
This is what I have tried:If you really don't want allocations to happen in a certain area, have you tried "reserving" it by doing the allocation before the other (smaller) allocations? If you need that space temporarily, you can still try to assign memory from the "reserved" space temporarily, effectively implementing your own memory management.
A really naive solution, but it might work.