16 lines
324 B
Makefile
16 lines
324 B
Makefile
|
USE_MBOOT ?= 0
|
||
|
|
||
|
# MCU settings
|
||
|
MCU_SERIES = h5
|
||
|
CMSIS_MCU = STM32H573xx
|
||
|
MICROPY_FLOAT_IMPL = single
|
||
|
AF_FILE = boards/stm32h573_af.csv
|
||
|
|
||
|
ifeq ($(USE_MBOOT),1)
|
||
|
LD_FILES = boards/stm32h573xi.ld boards/common_bl.ld
|
||
|
TEXT0_ADDR = 0x08008000
|
||
|
else
|
||
|
LD_FILES = boards/stm32h573xi.ld boards/common_basic.ld
|
||
|
TEXT0_ADDR = 0x08000000
|
||
|
endif
|