2019-05-01 14:30:48 +07:00
|
|
|
include ../../../tools/top.mk
|
|
|
|
include ../../make.mk
|
|
|
|
|
|
|
|
INC += \
|
|
|
|
src \
|
|
|
|
$(TOP)/hw \
|
|
|
|
$(TOP)/lib/FreeRTOS/Source/include \
|
|
|
|
$(TOP)/lib/FreeRTOS/Source/portable/GCC/$(FREERTOS_PORT)
|
|
|
|
|
|
|
|
# Example source
|
|
|
|
EXAMPLE_SOURCE += $(wildcard src/*.c)
|
|
|
|
SRC_C += $(addprefix $(CURRENT_PATH)/, $(EXAMPLE_SOURCE))
|
|
|
|
|
|
|
|
# FreeRTOS source
|
|
|
|
SRC_C += \
|
|
|
|
lib/FreeRTOS/Source/list.c \
|
|
|
|
lib/FreeRTOS/Source/queue.c \
|
|
|
|
lib/FreeRTOS/Source/tasks.c \
|
|
|
|
lib/FreeRTOS/Source/timers.c \
|
|
|
|
lib/FreeRTOS/Source/portable/MemMang/heap_4.c \
|
2019-05-01 16:01:44 +07:00
|
|
|
lib/FreeRTOS/Source/portable/GCC/$(FREERTOS_PORT)/port.c \
|
|
|
|
|
|
|
|
# FreeRTOS (lto + Os) linker issue
|
|
|
|
LDFLAGS += -Wl,--undefined=vTaskSwitchContext
|
2019-05-01 14:30:48 +07:00
|
|
|
|
|
|
|
include ../../rules.mk
|