mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
15 lines
360 B
Makefile
15 lines
360 B
Makefile
ifneq (,$(filter saul_default,$(USEMODULE)))
|
|
USEMODULE += saul_gpio
|
|
USEMODULE += bme280_spi
|
|
USEMODULE += lis2dh12_spi
|
|
endif
|
|
|
|
# Use Segger's RTT unless another stdio_% is already used
|
|
ifeq (,$(filter stdio_% slipdev_stdio,$(USEMODULE)))
|
|
USEMODULE += stdio_rtt
|
|
endif
|
|
|
|
USEMODULE += boards_common_nrf52xxxdk
|
|
|
|
include $(RIOTBOARD)/common/nrf52/Makefile.dep
|