Hi,
In nRF_SDK_for_Thread_and_zigbee, we were using the following function to enable thread coap in both server and client role in a single node:
/**@brief Function for initializing the Constrained Application Protocol Module.
*/
static void thread_coap_init(void)
{
thread_coap_utils_configuration_t thread_coap_configuration =
{
.coap_server_enabled = true,
.coap_client_enabled = true,
.configurable_led_blinking_enabled = false,
};
thread_coap_utils_init(&thread_coap_configuration);
}I want to implement the same in nRF_Connect_sdk.
What should I do to enable both server and client roles in a single node in nRF_Connect_SDK?