16 lines
270 B
Makefile
Raw Normal View History

2023-06-24 20:17:48 +07:00
MCU_VARIANT = stm32f769xx
2021-01-13 14:17:15 +07:00
# Only OTG-HS has a connector on this board
PORT ?= 1
SPEED ?= high
CFLAGS += \
-DSTM32F769xx \
-DHSE_VALUE=25000000 \
2023-06-24 20:17:48 +07:00
# Linker
LD_FILE_GCC = $(BOARD_PATH)/STM32F769ZITx_FLASH.ld
2021-01-13 14:17:15 +07:00
# flash target using on-board stlink
flash: flash-stlink