mirror of
https://github.com/hathach/tinyusb.git
synced 2026-02-04 06:15:29 +00:00
Signed-off-by: HiFiPhile <admin@hifiphile.com> Signed-off-by: Zixun LI <admin@hifiphile.com>
16 lines
474 B
Makefile
16 lines
474 B
Makefile
# STM32H747I-DISCO uses OTG_FS
|
|
# FIXME: Reset enumerates, un/replug USB plug does not enumerate
|
|
MCU_VARIANT = stm32h747xx
|
|
CFLAGS += -DSTM32H747xx -DCORE_CM7 -DHSE_VALUE=25000000
|
|
|
|
# Default is FulSpeed port
|
|
PORT ?= 0
|
|
|
|
LD_FILE_GCC = $(FAMILY_PATH)/linker/${MCU_VARIANT}_flash_CM7.ld
|
|
LD_FILE_IAR = $(ST_CMSIS)/Source/Templates/iar/linker/stm32h747xx_flash_CM7.icf
|
|
|
|
# For flash-jlink target
|
|
JLINK_DEVICE = stm32h747xi_m7
|
|
# flash target using on-board stlink
|
|
flash: flash-stlink
|