18 lines
412 B
Makefile
Raw Normal View History

2021-01-13 16:41:00 +07:00
PORT ?= 0
SPEED ?= full
CFLAGS += \
-DSTM32F746xx \
-DHSE_VALUE=8000000
2023-01-22 12:10:27 +07:00
# GCC
LD_FILE_GCC = $(BOARD_PATH)/STM32F746ZGTx_FLASH.ld
SRC_S_GCC += $(ST_CMSIS)/Source/Templates/gcc/startup_stm32f746xx.s
2023-01-22 12:10:27 +07:00
# IAR
SRC_S_IAR += $(ST_CMSIS)/Source/Templates/iar/startup_stm32f746xx.s
LD_FILE_IAR = $(ST_CMSIS)/Source/Templates/iar/linker/stm32f746xx_flash.icf
2021-01-13 16:41:00 +07:00
# flash target using on-board stlink
flash: flash-stlink