mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
16 lines
362 B
Makefile
16 lines
362 B
Makefile
include ../Makefile.net_common
|
|
|
|
USEMODULE += auto_init_gnrc_netif
|
|
USEMODULE += gnrc_ipv6_default
|
|
USEMODULE += gnrc_neterr
|
|
USEMODULE += sock_udp
|
|
USEMODULE += od
|
|
USEMODULE += xtimer
|
|
|
|
include $(RIOTBASE)/Makefile.include
|
|
|
|
# Set GNRC_PKTBUF_SIZE via CFLAGS if not being set via Kconfig.
|
|
ifndef CONFIG_GNRC_PKTBUF_SIZE
|
|
CFLAGS += -DCONFIG_GNRC_PKTBUF_SIZE=200
|
|
endif
|