2019-07-05 08:43:24 +02:00
|
|
|
# we use shared STM32 configuration snippets
|
|
|
|
INCLUDES += -I$(RIOTBOARD)/common/stm32/include
|
|
|
|
|
2020-11-19 18:38:41 +01:00
|
|
|
# this board uses openocd
|
|
|
|
PROGRAMMER ?= openocd
|
|
|
|
|
2019-07-05 08:43:24 +02:00
|
|
|
# this board has an on-board ST-link adapter
|
2021-02-18 17:15:55 +01:00
|
|
|
OPENOCD_DEBUG_ADAPTER ?= stlink
|
2021-02-11 14:21:17 +01:00
|
|
|
|
|
|
|
# openocd programmer is supported
|
|
|
|
PROGRAMMERS_SUPPORTED += openocd
|
2022-01-03 10:50:05 +01:00
|
|
|
|
|
|
|
# The board can become un-flashable after some execution or after being plugged,
|
|
|
|
# use connect_assert_srst to always be able to flash or reset the board.
|
|
|
|
OPENOCD_RESET_USE_CONNECT_ASSERT_SRST ?= 1
|
2023-07-24 09:46:08 +02:00
|
|
|
|
|
|
|
# Since only 18 of the 19 address lines are connected, only 512 kByte of the
|
|
|
|
# 1 MByte PSRAM can be used.
|
|
|
|
FMC_RAM_ADDR=0x60000000
|
|
|
|
FMC_RAM_LEN=512K
|