Hello
I just tried to use the Heap Stack overrun check of the DA1468x BSP and it seems that the following statement is not defined properly in the BSP:
OS_POISON_AREA_CHECK( OS_POISON_ON_ERROR_HALT, result );
This function exists in most main.c examples but OS_POISON_ON_ERROR_HALT is defined nowhere so dg_configCHECK_HEAP_STACK_OVERRUN end up with an error.
SDK 1.0.14.1081.
Best Regards
ST
Device:
Hibobspam@free.fr,
Please change the OS_POISON_ON_ERROR_HALT toOS_MEM_POISON_ON_ERROR_HALTinto vApplicationTickHook() function of main.c file. It is a mistype error, the OS_MEM_POISON_ON_ERROR_HALT is an enumeration place into osal.h header file.
Thanks, PM_Dialog