1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-31 09:21:19 +01:00

cpu/arm7tdmi_gba: make use of stdio_default

This commit is contained in:
Benjamin Valentin 2025-03-13 16:02:30 +01:00
parent 9ba1514914
commit 171d5ff315
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ include $(RIOTCPU)/$(CPU)/Makefile.include
DIRS = $(RIOTCPU)/arm7_common
ifneq (,$(filter stdio_%,$(USEMODULE)))
ifneq (,$(filter stdio_fb,$(USEMODULE)))
DIRS += stdio_fb
endif

View File

@ -1,6 +1,6 @@
USEMODULE += arm7_common
ifeq (,$(filter stdio_%,$(USEMODULE)))
ifneq (,$(filter stdio_default,$(USEMODULE)))
USEMODULE += stdio_fb
endif