File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed
examples/gnrc_border_router Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -13,17 +13,13 @@ BOARD_BLACKLIST += pic32-wifire pic32-clicker ruuvitag thingy52
1313# use ethos (ethernet over serial) for network communication and stdio over
1414# UART, but not on native, as native has a tap interface towards the host.
1515ifeq (,$(filter native,$(BOARD ) ) )
16- GNRC_NETIF_NUMOF := 2
17- USEMODULE += stdio_ethos
18-
1916 # ethos baudrate can be configured from make command
2017 ETHOS_BAUDRATE ?= 115200
2118 CFLAGS += -DETHOS_BAUDRATE=$(ETHOS_BAUDRATE )
2219else
23- GNRC_NETIF_NUMOF := 2
2420 TERMFLAGS += -z [::1]:17754
25- USEMODULE += socket_zep
2621endif
22+ GNRC_NETIF_NUMOF := 2
2723
2824# SLIP legacy compatibility
2925# Uncomment the lines below if you want to use SLIP with this example and don't
Original file line number Diff line number Diff line change 1+ # Put here board specific dependencies
2+ ifeq (,$(filter native,$(BOARD)))
3+ USEMODULE += stdio_ethos
4+ else
5+ USEMODULE += socket_zep
6+ endif
You can’t perform that action at this time.
0 commit comments