Important changes to forums and questions
All forums and questions are now archived. To start a new conversation or read the latest updates go to forums.mbed.com.
9 years, 7 months ago.
heap implementation - mbed OS
Hello,
I am trying to find out if there is any implementation of heap (such as heap_4.c found in free rtos) on mbed platforms for NUCLEO 401RE/411 RE. It would be nice to know if such an implementation exists.
Regards YK
1 Answer
9 years, 7 months ago.
I believe that the current mbed RTOS/RTX just uses the standard C malloc()/free() routines for managing heap allocations. Even the RTOS uses these API to dynamically allocate the stacks for some threads.
-Adam