2023-05-12 11:31:32 +02:00
|
|
|
include ../Makefile.net_common
|
2019-01-22 16:46:33 +01:00
|
|
|
|
|
|
|
USEMODULE += gnrc_sixlowpan_frag
|
|
|
|
USEMODULE += embunit
|
|
|
|
|
|
|
|
# GNRC modules should not be initialized unless we want to
|
2020-01-16 11:01:59 +01:00
|
|
|
DISABLE_MODULE += auto_init_gnrc_%
|
2019-01-22 16:46:33 +01:00
|
|
|
|
|
|
|
# we don't need all this packet buffer space so reduce it a little
|
2020-05-12 19:34:05 +02:00
|
|
|
CFLAGS += -DTEST_SUITES
|
2020-10-16 10:37:52 +02:00
|
|
|
|
|
|
|
include $(RIOTBASE)/Makefile.include
|
|
|
|
|
2020-05-12 19:34:05 +02:00
|
|
|
# Set GNRC_PKTBUF_SIZE via CFLAGS if not being set via Kconfig.
|
|
|
|
ifndef CONFIG_GNRC_PKTBUF_SIZE
|
|
|
|
CFLAGS += -DCONFIG_GNRC_PKTBUF_SIZE=2048
|
|
|
|
endif
|