2019-02-07 16:28:01 +11:00
|
|
|
# By default this board is configured to use mboot which must be deployed first
|
|
|
|
USE_MBOOT ?= 1
|
|
|
|
|
2016-12-12 16:36:35 +11:00
|
|
|
MCU_SERIES = f7
|
|
|
|
CMSIS_MCU = STM32F769xx
|
2017-06-28 15:42:40 +10:00
|
|
|
MICROPY_FLOAT_IMPL = double
|
2017-03-30 17:58:45 +11:00
|
|
|
AF_FILE = boards/stm32f767_af.csv
|
2019-02-07 16:28:01 +11:00
|
|
|
|
|
|
|
ifeq ($(USE_MBOOT),1)
|
|
|
|
# When using Mboot all the text goes together after the filesystem
|
|
|
|
LD_FILES = boards/stm32f769.ld boards/common_blifs.ld
|
|
|
|
TEXT0_ADDR = 0x08020000
|
|
|
|
else
|
|
|
|
# When not using Mboot the ISR text goes first, then the rest after the filesystem
|
2018-03-27 21:17:48 +11:00
|
|
|
LD_FILES = boards/stm32f769.ld boards/common_ifs.ld
|
2018-03-27 21:24:15 +11:00
|
|
|
TEXT0_ADDR = 0x08000000
|
|
|
|
TEXT1_ADDR = 0x08020000
|
2019-02-07 16:28:01 +11:00
|
|
|
endif
|