1if USEMODULE_LIBCOAP 2config LIBCOAP_CLIENT_URI 3 string "CoAP URI to connect to" 4 default "coap://[fe80::405:5aff:fe15:9b7f]/.well-known/core" 5config LIBCOAP_USE_PSK 6 string "Secret to use for PSK communications" 7 default "secretPSK" 8 depends on USEMODULE_TINYDTLS 9config LIBCOAP_USE_PSK_ID 10 string "User ID to use for PSK communications" 11 default "user_abc" 12 depends on USEMODULE_TINYDTLS 13config LIBCOAP_SERVER_SUPPORT 14 bool "Set to y if server support is required" 15 default n 16config LIBCOAP_CLIENT_SUPPORT 17 bool "Set to y if client support is required" 18 default y 19endif # USEMODULE_LIBCOAP 20