mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
20 lines
439 B
Makefile
20 lines
439 B
Makefile
# Use Segger's RTT unless another stdio_% is already used
|
|
ifeq (,$(filter stdio_% slipdev_stdio,$(USEMODULE)))
|
|
USEMODULE += stdio_rtt
|
|
endif
|
|
|
|
ifneq (,$(filter mtd,$(USEMODULE)))
|
|
USEMODULE += mtd_spi_nor
|
|
endif
|
|
|
|
ifneq (,$(filter disp_dev,$(USEMODULE)))
|
|
USEMODULE += ili9341
|
|
endif
|
|
|
|
ifneq (,$(filter touch_dev,$(USEMODULE)))
|
|
USEMODULE += cst816s
|
|
endif
|
|
|
|
# include common nrf52 dependencies
|
|
include $(RIOTBOARD)/common/nrf52/Makefile.dep
|