mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
b20ec93991
The WeAct-F411CE is a blackpill-like board with a STM32F411CE. It can be flashed using the vendor-provided bootloader.
11 lines
295 B
Makefile
11 lines
295 B
Makefile
INCLUDES += -I$(RIOTBOARD)/common/stm32/include
|
|
|
|
# default to flashing over USB
|
|
PROGRAMMER ?= dfu-util
|
|
DFU_USB_ID ?= 0483:df11
|
|
DFU_FLAGS ?= -a 0 -s 0x08000000:leave
|
|
ROM_OFFSET ?= 0x0
|
|
|
|
# Setup of programmer and serial is shared between STM32 based boards
|
|
include $(RIOTMAKE)/boards/stm32.inc.mk
|