1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Makefile.dep: disable stdio_rtt when stdio_uart is used

This commit is contained in:
Alexandre Abadie 2019-11-16 14:26:02 +01:00
parent 57d5a1db1c
commit f5cbe00118
No known key found for this signature in database
GPG Key ID: 1C919A403CAE1405

View File

@ -468,6 +468,9 @@ endif
ifneq (,$(filter stdio_uart,$(USEMODULE)))
FEATURES_REQUIRED += periph_uart
# stdio_rtt cannot be used when stdio_uart is loaded
DISABLE_MODULE += stdio_rtt
endif
ifneq (,$(filter isrpipe,$(USEMODULE)))