mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-20 05:21:59 -04:00
Ensure RM48 demo compiles in co-operative mode.
This commit is contained in:
parent
66734268f5
commit
0673f63e8d
|
@ -23,6 +23,7 @@
|
||||||
#include "sys_vim.h"
|
#include "sys_vim.h"
|
||||||
#include "sys_core.h"
|
#include "sys_core.h"
|
||||||
#include "sys_memory.h"
|
#include "sys_memory.h"
|
||||||
|
#include "FreeRTOS.h"
|
||||||
|
|
||||||
|
|
||||||
/* External Functions */
|
/* External Functions */
|
||||||
|
@ -43,7 +44,11 @@ static const t_isrFuncPTR s_vim_init[] =
|
||||||
phantomInterrupt,
|
phantomInterrupt,
|
||||||
esmHighLevelInterrupt,
|
esmHighLevelInterrupt,
|
||||||
phantomInterrupt,
|
phantomInterrupt,
|
||||||
vPortPreemptiveTick, /* RTI */
|
#if configUSE_PREEMPTION == 0
|
||||||
|
vPortNonPreemptiveTick, /* RTI */
|
||||||
|
#else
|
||||||
|
vPortPreemptiveTick, /* RTI */
|
||||||
|
#endif
|
||||||
phantomInterrupt,
|
phantomInterrupt,
|
||||||
phantomInterrupt,
|
phantomInterrupt,
|
||||||
phantomInterrupt,
|
phantomInterrupt,
|
||||||
|
|
Loading…
Reference in a new issue