2021-03-03 20:22:55 +07:00
|
|
|
# STM32H745I-DISCO uses OTG_FS
|
|
|
|
# FIXME: Reset enumerates, un/replug USB plug does not enumerate
|
|
|
|
|
|
|
|
CFLAGS += -DSTM32H745xx -DCORE_CM7 -DHSE_VALUE=25000000
|
|
|
|
|
|
|
|
# Default is FulSpeed port
|
|
|
|
PORT ?= 0
|
|
|
|
|
2023-01-30 17:04:39 +07:00
|
|
|
# GCC
|
2023-06-24 19:31:33 +07:00
|
|
|
SRC_S_GCC += $(ST_CMSIS)/Source/Templates/gcc/startup_stm32h745xx.s
|
|
|
|
LD_FILE_GCC = $(ST_CMSIS)/Source/Templates/gcc/linker/stm32h745xx_flash_CM7.ld
|
2023-01-30 17:04:39 +07:00
|
|
|
|
|
|
|
# IAR
|
2023-06-24 19:31:33 +07:00
|
|
|
SRC_S_IAR += $(ST_CMSIS)/Source/Templates/iar/startup_stm32h745xx.s
|
|
|
|
LD_FILE_IAR = $(ST_CMSIS)/Source/Templates/iar/linker/stm32h745xx_flash_CM7.icf
|
2021-03-03 20:22:55 +07:00
|
|
|
|
|
|
|
# For flash-jlink target
|
|
|
|
JLINK_DEVICE = stm32h745xi_m7
|
|
|
|
|
|
|
|
# flash target using on-board stlink
|
|
|
|
flash: flash-stlink
|