mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
2cc8176f1d
Using the common STM32 board makefile provides all supported programmers for STM32 boards. This allows e.g. to flash with stm32flash via `make BOARD=im880b PROGRAMMER=stm32flash flash`.
9 lines
268 B
Makefile
9 lines
268 B
Makefile
# this board uses shared STM32 configuration snippets
|
|
INCLUDES += -I$(RIOTBOARD)/common/stm32/include
|
|
|
|
CFLAGS+=-DSX127X_TX_SWITCH
|
|
CFLAGS+=-DSX127X_RX_SWITCH
|
|
|
|
# Setup of programmer and serial is shared between STM32 based boards
|
|
include $(RIOTMAKE)/boards/stm32.inc.mk
|