mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
74 lines
1.8 KiB
Plaintext
74 lines
1.8 KiB
Plaintext
# Copyright (c) 2021 HAW Hamburg
|
|
#
|
|
# This file is subject to the terms and conditions of the GNU Lesser
|
|
# General Public License v2.1. See the file LICENSE in the top level
|
|
# directory for more details.
|
|
#
|
|
menu "Wakaama LwM2M"
|
|
depends on USEPKG_WAKAAMA
|
|
|
|
menu "Remote server"
|
|
|
|
config LWM2M_STANDARD_PORT
|
|
string "CoAP default port of a LwM2M server"
|
|
default "5683"
|
|
|
|
config LWM2M_DTLS_PORT
|
|
string "CoAPS default port of a LwM2M server"
|
|
default "5684"
|
|
|
|
endmenu # Remote server
|
|
|
|
rsource "contrib/objects/Kconfig"
|
|
|
|
config LWM2M_DEVICE_TTL
|
|
int "Lifetime of the device"
|
|
default 300
|
|
help
|
|
Lifetime of the device on the LwM2M server, expressed in seconds.
|
|
|
|
config LWM2M_COAP_DEFAULT_BLOCK_SIZE
|
|
int "CoAP block size"
|
|
range 4 10
|
|
default 10
|
|
help
|
|
Block transfer options support only power-of-two block sizes, from 2**4 (16) to 2**10 (1024) bytes.
|
|
This option represents the exponent of 2, which will be used for the block size.
|
|
|
|
config LWM2M_LOCAL_PORT
|
|
string "Port for the local LwM2M CoAP"
|
|
default "5683"
|
|
|
|
config LWM2M_LOCAL_DTLS_PORT
|
|
string "Port for the local LwM2M CoAPs server"
|
|
default "5684"
|
|
|
|
config LWM2M_ALT_PATH
|
|
string "Alternate path to place LwM2M resources"
|
|
default "/"
|
|
|
|
config LWM2M_WITH_LOGS
|
|
bool "Debug logs"
|
|
|
|
config LWM2M_TLSF_BUFFER
|
|
int "Allocation buffer size"
|
|
default 5120
|
|
|
|
config LWM2M_CREDMAN_TAG_BASE
|
|
int "Credential tag base"
|
|
default 10
|
|
help
|
|
Number to use as base for assigning tags to @ref net_credman
|
|
credentials.
|
|
|
|
config LWM2M_URI_MAX_SIZE
|
|
int "Maximum length of an URI allowed"
|
|
default 64
|
|
|
|
config LWM2M_BOOTSTRAP
|
|
bool "Bootsrap server support"
|
|
help
|
|
Say y to support using a bootstrap server to get server information.
|
|
|
|
endmenu # Wakaama LwM2M
|