ArduinoCore-sam
ArduinoCore-sam copied to clipboard
Tuning malloc() on Arduino DUE
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
See also https://github.com/arduino/ArduinoCore-sam/issues/138