1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-24 05:53:49 +01:00
2025-07-07 17:27:39 +02:00

62 lines
1.6 KiB
Plaintext

menu "CoAP Unified Suite (unicoap)"
depends on USEMODULE_UNICOAP
comment "******************"
comment "SUITE"
menu "Buffers"
config UNICOAP_OPTIONS_MAX
int "Maximum number of options in a message"
range 0 9999999
default 16
help
Maximum number of options that can be present in a request or response
config UNICOAP_OPTIONS_BUFFER_DEFAULT_CAPACITY
int "Default option buffer capacity (bytes)"
range 0 9999999
default 32
help
Default buffer capacity unicoap chooses when you invoke @ref UNICOAP_OPTIONS_ALLOC
config UNICOAP_EXTERNAL_TOKEN_LENGTH_MAX
int "Maximum length of a token received from a client (bytes)"
range 1 8
default 8
help
External = generated by another node
config UNICOAP_GENERATED_TOKEN_LENGTH
int "Length of generated tokens (bytes)"
range 1 8
default 2
help
Generated = generated by unicoap
endmenu
menu "Behaviors"
config UNICOAP_DEBUG_LOGGING
bool "Enable debug logging"
default n
help
When enabled, debug logs are printed. Helps trace messages through layers.
endmenu
comment "******************"
comment "EXTENSIONS"
menu "Resource Observation"
config UNICOAP_OBSERVE_VALUE_WIDTH
int "Observe option value width (bytes)"
range 1 3
default 3
endmenu
endmenu # unicoap