LQ_IMXRT1052_VA1_FreeRTOS/src/freertos_helpers.c

12 lines
270 B
C

#include "FreeRTOS.h"
#include "task.h"
#include "fsl_debug_console.h"
uint8_t ucHeap[configTOTAL_HEAP_SIZE] __attribute__((section(".freertos_heap")));
void vApplicationStackOverflowHook(TaskHandle_t pxTask, char *pcTaskName) {
for(;;) {
__WFI();
}
}