1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/pkg/wakaama/Makefile.dep
2021-11-02 13:15:35 +01:00

25 lines
701 B
Makefile

USEMODULE += wakaama_core wakaama_core_coap13 wakaama_client
# include contrib code (platform adaption and client implementation)
USEMODULE += wakaama_contrib
USEMODULE += uri_parser
# this allows us to include our own objects, implemented in the 'objects'
# folder, by adding 'wakaama_objects_<objectName>' modules
USEMODULE += wakaama_objects
# include the 'device' object implementation (mandatory)
USEMODULE += wakaama_objects_device
USEMODULE += ztimer
USEMODULE += ztimer_sec
USEPKG += tlsf
# If logs for the package are active, we need fmt
ifneq (,$(filter -DLWM2M_WITH_LOGS,$(CFLAGS)))
USEMODULE += fmt
endif
# wakaama uses Sock UDP (implemented by some stack)
USEMODULE += sock_udp