2020-06-10 14:17:34 +02:00
|
|
|
USEMODULE += wakaama_core wakaama_core_coap13 wakaama_client
|
|
|
|
|
2019-11-29 17:54:08 +01:00
|
|
|
# include contrib code (platform adaption and client implementation)
|
|
|
|
USEMODULE += wakaama_contrib
|
2021-03-12 18:54:23 +01:00
|
|
|
USEMODULE += uri_parser
|
2019-11-29 17:54:08 +01:00
|
|
|
|
|
|
|
# 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
|
|
|
|
|
2021-11-02 11:37:17 +01:00
|
|
|
USEMODULE += ztimer
|
|
|
|
USEMODULE += ztimer_sec
|
2019-11-29 17:54:08 +01:00
|
|
|
USEPKG += tlsf
|
|
|
|
|
|
|
|
# If logs for the package are active, we need fmt
|
|
|
|
ifneq (,$(filter -DLWM2M_WITH_LOGS,$(CFLAGS)))
|
|
|
|
USEMODULE += fmt
|
|
|
|
endif
|
2020-12-16 09:45:20 +01:00
|
|
|
|
|
|
|
# wakaama uses Sock UDP (implemented by some stack)
|
|
|
|
USEMODULE += sock_udp
|