Skip to content

Commit

Permalink
fixup! boards: provide stdio_rtt as default module where required
Browse files Browse the repository at this point in the history
  • Loading branch information
aabadie committed Jan 13, 2020
1 parent fbd1212 commit f27c7d5
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
9 changes: 7 additions & 2 deletions boards/ruuvitag/Makefile.include
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# use JLink Segger RTT by default
RIOT_TERMINAL ?= jlink
# HACK: replicate dependency resolution in Makefile.dep, only works
# if `USEMODULE` or `DEFAULT_MODULE` is set by the command line or in the
# application Makefile.
ifeq (,$(filter stdio_%,$(DISABLE_MODULE) $(USEMODULE)))
RIOT_TERMINAL ?= jlink
endif

include $(RIOTMAKE)/tools/serial.inc.mk

# use shared Makefile.include
Expand Down
9 changes: 7 additions & 2 deletions boards/thingy52/Makefile.include
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# use JLink Segger RTT by default
RIOT_TERMINAL ?= jlink
# HACK: replicate dependency resolution in Makefile.dep, only works
# if `USEMODULE` or `DEFAULT_MODULE` is set by the command line or in the
# application Makefile.
ifeq (,$(filter stdio_%,$(DISABLE_MODULE) $(USEMODULE)))
RIOT_TERMINAL ?= jlink
endif

include $(RIOTMAKE)/tools/serial.inc.mk

# use shared Makefile.include
Expand Down

0 comments on commit f27c7d5

Please sign in to comment.