2021-04-28 18:11:49 +07:00
|
|
|
DEPS_SUBMODULES += hw/mcu/nxp/lpcopen
|
2021-03-04 22:50:45 +07:00
|
|
|
|
2019-09-09 16:47:57 +07:00
|
|
|
CFLAGS += \
|
2019-11-20 16:06:40 +07:00
|
|
|
-flto \
|
2019-09-09 16:47:57 +07:00
|
|
|
-mthumb \
|
|
|
|
-mabi=aapcs \
|
|
|
|
-mcpu=cortex-m4 \
|
2020-09-02 00:46:08 +07:00
|
|
|
-mfloat-abi=hard \
|
2020-09-02 00:56:43 +07:00
|
|
|
-mfpu=fpv4-sp-d16 \
|
2019-09-09 16:47:57 +07:00
|
|
|
-nostdlib \
|
|
|
|
-DCORE_M4 \
|
2020-09-03 12:58:09 +07:00
|
|
|
-D__USE_LPCOPEN \
|
2020-09-02 00:46:08 +07:00
|
|
|
-DCFG_TUSB_MCU=OPT_MCU_LPC43XX
|
2019-09-09 16:47:57 +07:00
|
|
|
|
2019-09-27 00:15:43 +07:00
|
|
|
# mcu driver cause following warnings
|
|
|
|
CFLAGS += -Wno-error=strict-prototypes -Wno-error=unused-parameter
|
2019-09-09 16:47:57 +07:00
|
|
|
|
2019-11-11 11:51:51 +07:00
|
|
|
MCU_DIR = hw/mcu/nxp/lpcopen/lpc43xx/lpc_chip_43xx
|
2019-09-09 16:47:57 +07:00
|
|
|
|
|
|
|
# All source paths should be relative to the top level.
|
|
|
|
LD_FILE = hw/bsp/$(BOARD)/ngx4330.ld
|
|
|
|
|
|
|
|
SRC_C += \
|
2021-03-17 16:52:07 +07:00
|
|
|
src/portable/nxp/transdimension/dcd_transdimension.c \
|
2019-09-09 16:47:57 +07:00
|
|
|
$(MCU_DIR)/../gcc/cr_startup_lpc43xx.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 \
|
2020-09-03 12:58:09 +07:00
|
|
|
$(MCU_DIR)/src/uart_18xx_43xx.c \
|
|
|
|
$(MCU_DIR)/src/fpu_init.c
|
2019-09-09 16:47:57 +07:00
|
|
|
|
|
|
|
INC += \
|
|
|
|
$(TOP)/$(MCU_DIR)/inc \
|
|
|
|
$(TOP)/$(MCU_DIR)/inc/config_43xx
|
|
|
|
|
|
|
|
# For freeRTOS port source
|
2020-03-11 00:09:37 +07:00
|
|
|
FREERTOS_PORT = ARM_CM4F
|
2019-09-09 16:47:57 +07:00
|
|
|
|
|
|
|
# For flash-jlink target
|
|
|
|
JLINK_DEVICE = LPC4330
|
|
|
|
JLINK_IF = swd
|
|
|
|
|
|
|
|
# flash using jlink
|
|
|
|
flash: flash-jlink
|