enable max3421 host for feather nrf52840 with makefile

This commit is contained in:
hathach 2023-09-11 16:44:06 +07:00
parent 1eb0cb0c65
commit f55052b61f
2 changed files with 16 additions and 12 deletions

View File

@ -2,7 +2,7 @@ MCU_VARIANT = nrf52840
CFLAGS += -DNRF52840_XXAA CFLAGS += -DNRF52840_XXAA
# enable max3421 host driver for this board # enable max3421 host driver for this board
#MAX3421_HOST = 1 MAX3421_HOST = 1
# All source paths should be relative to the top level. # All source paths should be relative to the top level.
LD_FILE = hw/bsp/nrf/linker/nrf52840_s140_v6.ld LD_FILE = hw/bsp/nrf/linker/nrf52840_s140_v6.ld

View File

@ -1,5 +1,6 @@
UF2_FAMILY_ID = 0xADA52840 UF2_FAMILY_ID = 0xADA52840
DEPS_SUBMODULES += lib/CMSIS_5 hw/mcu/nordic/nrfx
NRFX_DIR = hw/mcu/nordic/nrfx
include $(TOP)/$(BOARD_PATH)/board.mk include $(TOP)/$(BOARD_PATH)/board.mk
@ -14,24 +15,27 @@ CFLAGS += \
# suppress warning caused by vendor mcu driver # suppress warning caused by vendor mcu driver
CFLAGS += -Wno-error=undef -Wno-error=unused-parameter -Wno-error=cast-align -Wno-error=cast-qual -Wno-error=redundant-decls CFLAGS += -Wno-error=undef -Wno-error=unused-parameter -Wno-error=cast-align -Wno-error=cast-qual -Wno-error=redundant-decls
LDFLAGS += -L$(TOP)/hw/mcu/nordic/nrfx/mdk LDFLAGS += -L$(TOP)/${NRFX_DIR}/mdk
SRC_C += \ SRC_C += \
src/portable/nordic/nrf5x/dcd_nrf5x.c \ src/portable/nordic/nrf5x/dcd_nrf5x.c \
hw/mcu/nordic/nrfx/drivers/src/nrfx_power.c \ ${NRFX_DIR}/helpers/nrfx_flag32_allocator.c \
hw/mcu/nordic/nrfx/drivers/src/nrfx_uarte.c \ ${NRFX_DIR}/drivers/src/nrfx_gpiote.c \
hw/mcu/nordic/nrfx/mdk/system_$(MCU_VARIANT).c ${NRFX_DIR}/drivers/src/nrfx_power.c \
${NRFX_DIR}/drivers/src/nrfx_spim.c \
${NRFX_DIR}/drivers/src/nrfx_uarte.c \
${NRFX_DIR}/mdk/system_$(MCU_VARIANT).c
INC += \ INC += \
$(TOP)/$(BOARD_PATH) \ $(TOP)/$(BOARD_PATH) \
$(TOP)/lib/CMSIS_5/CMSIS/Core/Include \ $(TOP)/lib/CMSIS_5/CMSIS/Core/Include \
$(TOP)/hw/mcu/nordic/nrfx \ $(TOP)/${NRFX_DIR} \
$(TOP)/hw/mcu/nordic/nrfx/mdk \ $(TOP)/${NRFX_DIR}/mdk \
$(TOP)/hw/mcu/nordic/nrfx/hal \ $(TOP)/${NRFX_DIR}/hal \
$(TOP)/hw/mcu/nordic/nrfx/drivers/include \ $(TOP)/${NRFX_DIR}/drivers/include \
$(TOP)/hw/mcu/nordic/nrfx/drivers/src \ $(TOP)/${NRFX_DIR}/drivers/src \
SRC_S += hw/mcu/nordic/nrfx/mdk/gcc_startup_$(MCU_VARIANT).S SRC_S += ${NRFX_DIR}/mdk/gcc_startup_$(MCU_VARIANT).S
ASFLAGS += -D__HEAP_SIZE=0 ASFLAGS += -D__HEAP_SIZE=0