In ESP-IDF how can I dynamically assign stack in esp32 so that it will automatically take stack at runtime? I found some of the malloc and realloc functions in ESP-IDF but I was not able to understand it clearly.
In ESP-IDF how can I dynamically assign stack in esp32 so that it will automatically take stack at runtime?
I found some of the malloc and realloc functions in ESP-IDF but I was not able to understand it clearly.
There is no way to dynamically resize stack. You need to assign an amount that is large enough when you start the task.
There is no way to dynamically resize stack. You need to assign an amount that is large enough when you start the task.
See less