mirror of
https://github.com/FreeRTOS/FreeRTOS.git
synced 2025-06-24 01:52:08 +08:00
Ensure RM48 demo compiles in co-operative mode.
This commit is contained in:
@ -23,6 +23,7 @@
|
||||
#include "sys_vim.h"
|
||||
#include "sys_core.h"
|
||||
#include "sys_memory.h"
|
||||
#include "FreeRTOS.h"
|
||||
|
||||
|
||||
/* External Functions */
|
||||
@ -43,7 +44,11 @@ static const t_isrFuncPTR s_vim_init[] =
|
||||
phantomInterrupt,
|
||||
esmHighLevelInterrupt,
|
||||
phantomInterrupt,
|
||||
#if configUSE_PREEMPTION == 0
|
||||
vPortNonPreemptiveTick, /* RTI */
|
||||
#else
|
||||
vPortPreemptiveTick, /* RTI */
|
||||
#endif
|
||||
phantomInterrupt,
|
||||
phantomInterrupt,
|
||||
phantomInterrupt,
|
||||
|
Reference in New Issue
Block a user