mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
20 lines
499 B
Makefile
20 lines
499 B
Makefile
# we use shared STM32 configuration snippets
|
|
INCLUDES += -I$(RIOTBOARD)/common/stm32/include
|
|
|
|
# this board uses openocd
|
|
PROGRAMMER ?= openocd
|
|
|
|
# this board has an on-board ST-link adapter
|
|
OPENOCD_DEBUG_ADAPTER ?= stlink
|
|
|
|
#variable needed by cpy2remed PROGRAMMER
|
|
#it contains name of ST-Link removable media
|
|
DIR_NAME_AT_REMED = "DIS_F469NI"
|
|
|
|
# openocd and cpy2remed programmers are supported
|
|
PROGRAMMERS_SUPPORTED += openocd cpy2remed
|
|
|
|
# heap configuration
|
|
FMC_RAM_ADDR=0xc0000000
|
|
FMC_RAM_LEN=16384K
|