16 lines
302 B
Makefile
Raw Normal View History

2021-01-13 13:46:21 +07:00
PORT ?= 0
SPEED ?= full
CFLAGS += \
-DSTM32F767xx \
-DHSE_VALUE=8000000 \
LD_FILE = $(BOARD_PATH)/STM32F767ZITx_FLASH.ld
SRC_S += $(ST_CMSIS)/Source/Templates/gcc/startup_stm32f767xx.s
2021-10-31 00:09:40 +07:00
# For flash-jlink target
JLINK_DEVICE = stm32f767zi
2021-01-13 13:46:21 +07:00
# flash target using on-board stlink
flash: flash-stlink