1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

example/gcoap: add LWIP make option

This commit is contained in:
Karl Fessel 2021-11-03 16:51:10 +01:00
parent 0bbcf4863f
commit 5cc59eb490

View File

@ -12,12 +12,22 @@ RIOTBASE ?= $(CURDIR)/../..
# Include packages that pull up and auto-init the link layer. # Include packages that pull up and auto-init the link layer.
# NOTE: 6LoWPAN will be included if IEEE802.15.4 devices are present # NOTE: 6LoWPAN will be included if IEEE802.15.4 devices are present
USEMODULE += netdev_default USEMODULE += netdev_default
USEMODULE += auto_init_gnrc_netif
# Specify the mandatory networking modules # use GNRC by default
USEMODULE += gnrc_ipv6_default LWIP ?= 0
ifeq (0,$(LWIP))
USEMODULE += auto_init_gnrc_netif
# Specify the mandatory networking modules
USEMODULE += gnrc_ipv6_default
# Additional networking modules that can be dropped if not needed
USEMODULE += gnrc_icmpv6_echo
else
USEMODULE += lwip_ipv6
USEMODULE += lwip_netdev
endif
USEMODULE += gcoap USEMODULE += gcoap
# Additional networking modules that can be dropped if not needed
USEMODULE += gnrc_icmpv6_echo
# Required by gcoap example # Required by gcoap example
USEMODULE += od USEMODULE += od