mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
971f0f6fee
This feature is only used to blacklist stdio via CDC ACM. Introduce the `highlevel_stdio` feature instead to indicate that stdio functionality requires a running thread to print anything
18 lines
532 B
Makefile
18 lines
532 B
Makefile
ifneq (,$(filter saul_default,$(USEMODULE)))
|
|
USEMODULE += saul_gpio
|
|
endif
|
|
|
|
# use arduino-bootloader only if no other stdio_% other than stdio_cdc_acm
|
|
# is requested
|
|
ifeq (,$(filter-out stdio_cdc_acm,$(filter stdio_% slipdev_stdio,$(USEMODULE))))
|
|
# Provide stdio over USB by default
|
|
USEMODULE += stdio_cdc_acm
|
|
|
|
# This board requires support for Arduino bootloader.
|
|
FEATURES_REQUIRED += highlevel_stdio
|
|
USEMODULE += usb_board_reset
|
|
endif
|
|
|
|
# include common nrf52 dependencies
|
|
include $(RIOTBOARD)/common/nrf52/Makefile.dep
|