tinyusb/hw/bsp/lpc51/family.mk

43 lines
1.1 KiB
Makefile
Raw Normal View History

2021-04-28 23:44:04 +07:00
SDK_DIR = hw/mcu/nxp/mcux-sdk
DEPS_SUBMODULES += $(SDK_DIR) lib/CMSIS_5
2023-03-19 17:58:20 +07:00
MCU_DIR = $(SDK_DIR)/devices/$(MCU)
include $(TOP)/$(BOARD_PATH)/board.mk
2023-06-24 18:38:41 +07:00
CPU_CORE ?= cortex-m0plus
2023-03-19 17:58:20 +07:00
2019-08-24 00:52:46 +07:00
CFLAGS += \
-flto \
2019-09-03 13:25:36 +07:00
-DCFG_TUSB_MCU=OPT_MCU_LPC51UXX \
-DCFG_TUSB_MEM_ALIGN='__attribute__((aligned(64)))'
2019-08-24 00:52:46 +07:00
# mcu driver cause following warnings
CFLAGS += -Wno-error=unused-parameter
2019-09-03 13:25:36 +07:00
LDFLAGS_GCC += -specs=nosys.specs -specs=nano.specs
2019-08-24 00:52:46 +07:00
# All source paths should be relative to the top level.
2023-03-19 17:58:20 +07:00
LD_FILE = $(MCU_DIR)/gcc/$(MCU)_flash.ld
2019-08-24 00:52:46 +07:00
SRC_C += \
src/portable/nxp/lpc_ip3511/dcd_lpc_ip3511.c \
2023-03-19 17:58:20 +07:00
$(MCU_DIR)/system_$(MCU).c \
2019-09-01 15:11:09 +07:00
$(MCU_DIR)/drivers/fsl_clock.c \
$(MCU_DIR)/drivers/fsl_power.c \
2021-04-28 23:44:04 +07:00
$(MCU_DIR)/drivers/fsl_reset.c \
$(SDK_DIR)/drivers/lpc_gpio/fsl_gpio.c \
$(SDK_DIR)/drivers/flexcomm/fsl_flexcomm.c \
$(SDK_DIR)/drivers/flexcomm/fsl_usart.c
2019-08-24 00:52:46 +07:00
INC += \
$(TOP)/lib/CMSIS_5/CMSIS/Core/Include \
2019-09-01 15:11:09 +07:00
$(TOP)/$(MCU_DIR) \
2021-04-28 23:44:04 +07:00
$(TOP)/$(MCU_DIR)/drivers \
$(TOP)/$(SDK_DIR)/drivers/common \
$(TOP)/$(SDK_DIR)/drivers/flexcomm \
$(TOP)/$(SDK_DIR)/drivers/lpc_iocon \
$(TOP)/$(SDK_DIR)/drivers/lpc_gpio
2019-08-24 00:52:46 +07:00
2023-03-19 17:58:20 +07:00
SRC_S += $(MCU_DIR)/gcc/startup_$(MCU).S
2019-08-24 00:52:46 +07:00
2019-09-01 15:11:09 +07:00
LIBS += $(TOP)/$(MCU_DIR)/gcc/libpower.a