mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-09-01 20:03:50 -04:00
Add interrupt nesting support, cache setup and reg test tasks.
This commit is contained in:
parent
a943ccd85a
commit
60da4247dd
2 changed files with 188 additions and 11 deletions
|
@ -31,6 +31,8 @@ OBJS = $(OUTPUT_DIR)/portasm.o \
|
|||
$(OUTPUT_DIR)/tasks.o \
|
||||
$(OUTPUT_DIR)/queue.o \
|
||||
$(OUTPUT_DIR)/heap_2.o \
|
||||
$(OUTPUT_DIR)/IntQueueTimer.o \
|
||||
$(OUTPUT_DIR)/IntQueue.o \
|
||||
$(OUTPUT_DIR)/FreeRTOS_Tick_Setup.o
|
||||
|
||||
C_DEPS = $(OBJS:.o=.d)
|
||||
|
@ -44,6 +46,7 @@ CFLAGS= -I"$(FREERTOS_SOURCE_DIR)/include" \
|
|||
-I. \
|
||||
-D COLDFIRE_V2_GCC \
|
||||
-O0 \
|
||||
-fno-strict-aliasing \
|
||||
-g3 \
|
||||
-Wall \
|
||||
-Wextra \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue