17 lines
679 B
Makefile
17 lines
679 B
Makefile
ifeq ($(KINETIS_CONTRIB),)
|
|
KINETIS_CONTRIB = $(CHIBIOS_CONTRIB)
|
|
endif
|
|
|
|
HW_LAYER_PORT += $(KINETIS_CONTRIB)/os/hal/ports/KINETIS/KE1xF/fsl/fsl_ftfx_flexnvm.c \
|
|
$(KINETIS_CONTRIB)/os/hal/ports/KINETIS/KE1xF/fsl/fsl_ftfx_controller.c
|
|
|
|
HW_LAYER_PORT_CPP += $(PROJECT_DIR)/hw_layer/ports/kinetis/mpu_util.cpp \
|
|
$(PROJECT_DIR)/hw_layer/ports/kinetis/kinetis_pins.cpp \
|
|
$(PROJECT_DIR)/hw_layer/ports/kinetis/backup_ram.cpp \
|
|
$(PROJECT_DIR)/hw_layer/ports/kinetis/kinetis_common.cpp \
|
|
$(PROJECT_DIR)/hw_layer/trigger_input_comp.cpp \
|
|
$(PROJECT_DIR)/hw_layer/microsecond_timer/microsecond_timer_gpt.cpp \
|
|
$(PROJECT_DIR)/hw_layer/ports/kinetis/flash_int.cpp
|
|
|
|
MCU = cortex-m4
|