On AVR, malloc() can be tuned by setting "extern char *__malloc_heap_end;" to some value. This will prevent malloc() to use the current stack pointer for top of memory and it will create an heap for malloc().
Is there anything similar in the Arduino DUE library? malloc() implementation seems to be different.
On AVR, malloc() can be tuned by setting "extern char *__malloc_heap_end;" to some value. This will prevent malloc() to use the current stack pointer for top of memory and it will create an heap for malloc().
Is there anything similar in the Arduino DUE library? malloc() implementation seems to be different.
Regards