Hi,
I added DFU functionality to my Mesh-client application as shown in your DFU-example.
At startup I get this log message:
nrf_mesh_dfu.c, 904, ERROR: No CMD handler!
coming from here:
uint32_t nrf_mesh_dfu_cmd_send(bl_cmd_t* p_cmd)
{
if (m_cmd_handler == NULL)
{
__LOG(LOG_SRC_DFU, LOG_LEVEL_ERROR, "ERROR: No CMD handler!\n");
return NRF_ERROR_NOT_SUPPORTED;
}
...
}
Can someone please tell me, what I'm doing wrong here?
(using Mesh SDK 3.1.0 and SDK 15.2)
Regards
Gerry