mirror of
https://github.com/hathach/tinyusb.git
synced 2025-01-17 05:32:55 +08:00
16 lines
268 B
Makefile
16 lines
268 B
Makefile
MCU_VARIANT = stm32f723xx
|
|
|
|
# Only OTG-HS has a connector on this board
|
|
PORT ?= 1
|
|
SPEED ?= high
|
|
|
|
CFLAGS += \
|
|
-DSTM32F723xx \
|
|
-DHSE_VALUE=25000000 \
|
|
|
|
# Linker
|
|
LD_FILE_GCC = $(BOARD_PATH)/STM32F723xE_FLASH.ld
|
|
|
|
# flash target using on-board stlink
|
|
flash: flash-stlink
|