2020-04-02 09:21:58 +02:00
|
|
|
# Use Segger's RTT unless another stdio_% is already used
|
|
|
|
ifeq (,$(filter stdio_% slipdev_stdio,$(USEMODULE)))
|
|
|
|
USEMODULE += stdio_rtt
|
|
|
|
endif
|
2020-01-15 20:53:47 +01:00
|
|
|
|
2020-01-17 20:58:11 +01:00
|
|
|
ifneq (,$(filter mtd,$(USEMODULE)))
|
|
|
|
USEMODULE += mtd_spi_nor
|
|
|
|
endif
|
|
|
|
|
2020-06-24 08:50:08 +02:00
|
|
|
ifneq (,$(filter disp_dev,$(USEMODULE)))
|
|
|
|
USEMODULE += ili9341
|
|
|
|
endif
|
|
|
|
|
2022-01-02 08:01:56 +01:00
|
|
|
ifneq (,$(filter touch_dev,$(USEMODULE)))
|
|
|
|
USEMODULE += cst816s
|
|
|
|
endif
|
|
|
|
|
2019-10-23 13:50:18 +02:00
|
|
|
# include common nrf52 dependencies
|
|
|
|
include $(RIOTBOARD)/common/nrf52/Makefile.dep
|