This is an automated email from the ASF dual-hosted git repository.
linguini1 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git
The following commit(s) were added to refs/heads/master by this push:
new f0f7c5ada wakaama: add support for TLV
f0f7c5ada is described below
commit f0f7c5ada9f4c92c73acab75c4ef21a38722d689
Author: raiden00pl <[email protected]>
AuthorDate: Mon May 18 12:30:05 2026 +0200
wakaama: add support for TLV
add support for LWM2M TLV
Signed-off-by: raiden00pl <[email protected]>
---
netutils/wakaama/CMakeLists.txt | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/netutils/wakaama/CMakeLists.txt b/netutils/wakaama/CMakeLists.txt
index df3c32c2c..6e5e4f094 100644
--- a/netutils/wakaama/CMakeLists.txt
+++ b/netutils/wakaama/CMakeLists.txt
@@ -78,6 +78,10 @@ if(CONFIG_NETUTILS_WAKAAMA)
list(APPEND WAKAAMA_DEFINITIONS LWM2M_SUPPORT_SENML_JSON)
endif()
+ if(CONFIG_WAKAAMA_TLV)
+ list(APPEND WAKAAMA_DEFINITIONS LWM2M_SUPPORT_TLV)
+ endif()
+
list(APPEND WAKAAMA_DEFINITIONS
LWM2M_COAP_DEFAULT_BLOCK_SIZE=${CONFIG_WAKAAMA_COAP_DEFAULT_BLOCK_SIZE})