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

Merge pull request #16331 from fjmolinas/pr_stdio_uart_lpuart

makefiles/stdio.inc.mk: stdio_uart require uart or lpuart
This commit is contained in:
Francisco 2021-06-07 08:33:27 +02:00 committed by GitHub
commit 6f369f4381
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 28 additions and 19 deletions

View File

@ -1,5 +1,6 @@
FEATURES_REQUIRED += periph_lpuart
ifneq (,$(filter stdio_uart,$(USEMODULE)))
FEATURES_REQUIRED += periph_lpuart
endif
ifneq (,$(filter netdev_default,$(USEMODULE)))
USEMODULE += sx1272
endif

View File

@ -1,3 +1,4 @@
FEATURES_REQUIRED += periph_lpuart
ifneq (,$(filter stdio_uart,$(USEMODULE)))
FEATURES_REQUIRED += periph_lpuart
endif
include $(RIOTBOARD)/common/nucleo/Makefile.dep

View File

@ -1,3 +1,4 @@
FEATURES_REQUIRED += periph_lpuart
ifneq (,$(filter stdio_uart,$(USEMODULE)))
FEATURES_REQUIRED += periph_lpuart
endif
include $(RIOTBOARD)/common/nucleo/Makefile.dep

View File

@ -1,3 +1,4 @@
FEATURES_REQUIRED += periph_lpuart
ifneq (,$(filter stdio_uart,$(USEMODULE)))
FEATURES_REQUIRED += periph_lpuart
endif
include $(RIOTBOARD)/common/nucleo/Makefile.dep

View File

@ -1,3 +1,4 @@
FEATURES_REQUIRED += periph_lpuart
ifneq (,$(filter stdio_uart,$(USEMODULE)))
FEATURES_REQUIRED += periph_lpuart
endif
include $(RIOTBOARD)/common/nucleo/Makefile.dep

View File

@ -1,3 +1,4 @@
FEATURES_REQUIRED += periph_lpuart
ifneq (,$(filter stdio_uart,$(USEMODULE)))
FEATURES_REQUIRED += periph_lpuart
endif
include $(RIOTBOARD)/common/nucleo/Makefile.dep

View File

@ -1,3 +1,4 @@
FEATURES_REQUIRED += periph_lpuart
ifneq (,$(filter stdio_uart,$(USEMODULE)))
FEATURES_REQUIRED += periph_lpuart
endif
include $(RIOTBOARD)/common/nucleo/Makefile.dep

View File

@ -1,3 +1,4 @@
FEATURES_REQUIRED += periph_lpuart
ifneq (,$(filter stdio_uart,$(USEMODULE)))
FEATURES_REQUIRED += periph_lpuart
endif
include $(RIOTBOARD)/common/nucleo/Makefile.dep

View File

@ -1,3 +1,4 @@
FEATURES_REQUIRED += periph_lpuart
ifneq (,$(filter stdio_uart,$(USEMODULE)))
FEATURES_REQUIRED += periph_lpuart
endif
include $(RIOTBOARD)/common/nucleo/Makefile.dep

View File

@ -41,7 +41,7 @@ ifneq (,$(filter stdio_uart_rx,$(USEMODULE)))
endif
ifneq (,$(filter stdio_uart,$(USEMODULE)))
FEATURES_REQUIRED += periph_uart
FEATURES_REQUIRED_ANY += periph_uart|periph_lpuart
endif
ifneq (,$(filter stdio_semihosting,$(USEMODULE)))