tinyusb/hw/bsp/lpc18/family.mk

35 lines
918 B
Makefile
Raw Normal View History

2021-04-28 18:11:49 +07:00
DEPS_SUBMODULES += hw/mcu/nxp/lpcopen
MCU_DIR = hw/mcu/nxp/lpcopen/lpc18xx/lpc_chip_18xx
2021-03-03 16:03:21 +07:00
include $(TOP)/$(BOARD_PATH)/board.mk
2023-06-24 18:38:41 +07:00
CPU_CORE ?= cortex-m3
2021-03-03 16:03:21 +07:00
2019-05-15 16:09:44 +07:00
CFLAGS += \
-flto \
2019-05-15 16:09:44 +07:00
-nostdlib \
-DCORE_M3 \
-D__USE_LPCOPEN \
-DCFG_TUSB_MCU=OPT_MCU_LPC18XX
2019-05-15 16:09:44 +07:00
# mcu driver cause following warnings
2021-10-17 16:26:27 +07:00
CFLAGS += -Wno-error=unused-parameter -Wno-error=strict-prototypes -Wno-error=cast-qual
2019-09-06 15:06:04 +07:00
2024-04-24 22:41:22 +07:00
LDFLAGS_GCC += --specs=nosys.specs --specs=nano.specs
2019-09-09 12:39:58 +07:00
2019-05-15 16:09:44 +07:00
SRC_C += \
src/portable/chipidea/ci_hs/dcd_ci_hs.c \
src/portable/chipidea/ci_hs/hcd_ci_hs.c \
src/portable/ehci/ehci.c \
2019-09-09 12:39:58 +07:00
$(MCU_DIR)/../gcc/cr_startup_lpc18xx.c \
$(MCU_DIR)/src/chip_18xx_43xx.c \
$(MCU_DIR)/src/clock_18xx_43xx.c \
$(MCU_DIR)/src/gpio_18xx_43xx.c \
$(MCU_DIR)/src/sysinit_18xx_43xx.c \
$(MCU_DIR)/src/uart_18xx_43xx.c
2019-05-15 16:09:44 +07:00
INC += \
2021-03-03 16:03:21 +07:00
$(TOP)/$(BOARD_PATH) \
2019-09-09 12:39:58 +07:00
$(TOP)/$(MCU_DIR)/inc \
2024-04-24 22:41:22 +07:00
$(TOP)/$(MCU_DIR)/inc/config_18xx \
$(TOP)/lib/CMSIS_5/CMSIS/Core/Include \