17 lines
467 B
Makefile
Raw Normal View History

2020-11-29 22:48:21 +07:00
CFLAGS += -DSTM32F401xC
2023-01-22 11:56:50 +07:00
# GCC
SRC_S_GCC += $(ST_CMSIS)/Source/Templates/gcc/startup_stm32f401xc.s
LD_FILE_GCC = $(BOARD_PATH)/STM32F401VCTx_FLASH.ld
2020-11-29 22:48:21 +07:00
2023-01-22 11:56:50 +07:00
# IAR
SRC_S_IAR += $(ST_CMSIS)/Source/Templates/iar/startup_stm32f401xc.s
LD_FILE_IAR = $(ST_CMSIS)/Source/Templates/iar/linker/stm32f401xc_flash.icf
2020-11-29 22:48:21 +07:00
# For flash-jlink target
JLINK_DEVICE = stm32f401cc
# flash target ROM bootloader
flash: $(BUILD)/$(PROJECT).bin
2020-11-29 22:48:21 +07:00
dfu-util -R -a 0 --dfuse-address 0x08000000 -D $<