18 lines
440 B
Makefile
Raw Normal View History

2021-11-02 15:15:54 +07:00
CFLAGS += \
-DHSE_VALUE=8000000 \
-DSTM32L4R5xx \
2023-01-30 20:11:59 +07:00
# GCC
GCC_SRC_S += $(ST_CMSIS)/Source/Templates/gcc/startup_stm32l4r5xx.s
GCC_LD_FILE = $(BOARD_PATH)/STM32L4RXxI_FLASH.ld
2021-11-02 15:15:54 +07:00
2023-01-30 20:11:59 +07:00
# IAR
IAR_SRC_S += $(ST_CMSIS)/Source/Templates/iar/startup_stm32l4r5xx.s
IAR_LD_FILE = $(ST_CMSIS)/Source/Templates/iar/linker/stm32l4r5xx_flash.icf
2021-11-02 15:15:54 +07:00
# For flash-jlink target
JLINK_DEVICE = stm32l4r5zi
# flash target using on-board stlink
flash: flash-stlink