mirror of
https://github.com/espressif/ESP8266_RTOS_SDK.git
synced 2025-06-05 13:16:37 +08:00
feat(freertos): Add port to pass compiling
This commit is contained in:
@ -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();
|
||||
}
|
||||
|
Reference in New Issue
Block a user