37 lines
864 B
Makefile
37 lines
864 B
Makefile
|
DEPS_SUBMODULES += lib/CMSIS_5 hw/mcu/ti
|
||
|
|
||
|
#include $(TOP)/$(BOARD_PATH)/board.mk
|
||
|
CPU_CORE ?= cortex-m4
|
||
|
|
||
|
CFLAGS += \
|
||
|
-flto \
|
||
|
-mslow-flash-data \
|
||
|
-D__MSP432E401Y__ \
|
||
|
-DCFG_TUSB_MCU=OPT_MCU_MSP432E4
|
||
|
|
||
|
# mcu driver cause following warnings
|
||
|
CFLAGS += -Wno-error=cast-qual -Wno-error=format=
|
||
|
|
||
|
# All source paths should be relative to the top level.
|
||
|
LD_FILE = hw/mcu/ti/msp432e4/Source/msp432e401y.ld
|
||
|
LDINC += $(TOP)/hw/mcu/ti/msp432e4/Include
|
||
|
LDFLAGS += $(addprefix -L,$(LDINC))
|
||
|
|
||
|
MCU_DIR = hw/mcu/ti/msp432e4
|
||
|
|
||
|
SRC_C += \
|
||
|
src/portable/mentor/musb/dcd_musb.c \
|
||
|
src/portable/mentor/musb/hcd_musb.c \
|
||
|
$(MCU_DIR)/Source/system_msp432e401y.c
|
||
|
|
||
|
INC += \
|
||
|
$(TOP)/lib/CMSIS_5/CMSIS/Core/Include \
|
||
|
$(TOP)/$(MCU_DIR)/Include \
|
||
|
$(TOP)/$(BOARD_PATH)
|
||
|
|
||
|
SRC_S += $(MCU_DIR)/Source/startup_msp432e411y_gcc.S
|
||
|
|
||
|
# For flash-jlink target
|
||
|
JLINK_DEVICE = MSP432E401Y
|
||
|
JLINK_IF = SWD
|