You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The library can use queue and IP-task stack which was allocated statically.
Currently, the stack builds when FreeRTOS-Kernel config configSUPPORT_DYNAMIC_ALLOCATION == 1 regardless of the value of configSUPPORT_STATIC_ALLOCATION .
However, with configSUPPORT_STATIC_ALLOCATION == 1 and configSUPPORT_DYNAMIC_ALLOCATION == 0, the stack fails to build since it is using pvPortMalloc in myriad socket functions.
The library can use queue and IP-task stack which was allocated statically.
Currently, the stack builds when FreeRTOS-Kernel config
configSUPPORT_DYNAMIC_ALLOCATION == 1
regardless of the value ofconfigSUPPORT_STATIC_ALLOCATION
.However, with
configSUPPORT_STATIC_ALLOCATION == 1
andconfigSUPPORT_DYNAMIC_ALLOCATION == 0
, the stack fails to build since it is usingpvPortMalloc
in myriad socket functions.EDIT: Here is the forum post which led to creation of this issue: https://forums.freertos.org/t/freertos-plus-tcp-with-static-memory-allocation/14815
The text was updated successfully, but these errors were encountered: