esp32-s2_dfu/hw/bsp/lpcxpresso51u68/board.mk

48 lines
1.1 KiB
Makefile
Raw Normal View History

2019-08-23 19:52:46 +02:00
CFLAGS += \
-mthumb \
-mabi=aapcs \
-mcpu=cortex-m0plus \
-DCPU_LPC51U68JBD64 \
2019-09-03 08:25:36 +02:00
-DCFG_TUSB_MCU=OPT_MCU_LPC51UXX \
2019-09-01 09:51:40 +02:00
-DCFG_TUSB_MEM_SECTION='__attribute__((section(".data")))' \
2019-08-23 19:52:46 +02:00
-DCFG_TUSB_MEM_ALIGN='__attribute__((aligned(64)))'
# mcu driver cause following warnings
CFLAGS += -Wno-error=nested-externs -Wno-error=unused-parameter
2019-09-03 08:25:36 +02:00
2019-09-01 10:11:09 +02:00
MCU_DIR = hw/mcu/nxp/lpc_driver/lpc51u6x/devices/LPC51U68
2019-08-23 19:52:46 +02:00
# All source paths should be relative to the top level.
2019-09-01 10:11:09 +02:00
LD_FILE = $(MCU_DIR)/gcc/LPC51U68_flash.ld
2019-08-23 19:52:46 +02:00
SRC_C += \
2019-09-01 10:11:09 +02:00
$(MCU_DIR)/system_LPC51U68.c \
$(MCU_DIR)/drivers/fsl_clock.c \
$(MCU_DIR)/drivers/fsl_gpio.c \
$(MCU_DIR)/drivers/fsl_power.c \
$(MCU_DIR)/drivers/fsl_reset.c
2019-08-23 19:52:46 +02:00
INC += \
2019-09-05 11:12:13 +02:00
$(TOP)/$(MCU_DIR)/../../CMSIS/Include \
2019-09-01 10:11:09 +02:00
$(TOP)/$(MCU_DIR) \
$(TOP)/$(MCU_DIR)/drivers
2019-08-23 19:52:46 +02:00
2019-09-01 10:11:09 +02:00
SRC_S += $(MCU_DIR)/gcc/startup_LPC51U68.S
2019-08-23 19:52:46 +02:00
2019-09-01 10:11:09 +02:00
LIBS += $(TOP)/$(MCU_DIR)/gcc/libpower.a
2019-08-31 17:44:08 +02:00
2019-08-23 19:52:46 +02:00
# For TinyUSB port source
VENDOR = nxp
2019-09-01 11:44:40 +02:00
CHIP_FAMILY = lpc_ip3511
2019-08-23 19:52:46 +02:00
# For freeRTOS port source
FREERTOS_PORT = ARM_CM0
# For flash-jlink target
JLINK_DEVICE = LPC51U68
JLINK_IF = swd
2019-09-01 16:04:43 +02:00
# flash using pyocd (51u68 is not supported yet)
flash: $(BUILD)/$(BOARD)-firmware.hex
pyocd flash -t LPC51U68 $<