feat(freertos): Add port to pass compiling

This commit is contained in:
Dong Heng
2018-04-19 18:15:28 +08:00
committed by Wu Jian Gang
parent 34cd06c059
commit 9ef67e4505

View File

@ -315,3 +315,18 @@ uint16 _xt_isr_handler(uint16 i)
return i & ~(1 << index);
}
void vApplicationStackOverflowHook(xTaskHandle xTask, signed char *pcTaskName)
{
os_printf("task [%s] stask overflow\n", pcTaskName);
}
void __taskEXIT_CRITICAL(void)
{
portEXIT_CRITICAL();
}
void __taskENTER_CRITICAL(void)
{
portENTER_CRITICAL();
}