Hi, I have a quick question regarding the DFU MTU get request.
According to the docs page, this should return the MTU used by the transport, but in reality nothing is transmitted back (the response is simply 60 07 01 and nothing more).
Looking at the implementation of the request handling, it indeed does not do anything:
static void on_mtu_get_request(nrf_dfu_request_t * p_req, nrf_dfu_response_t * p_res) { NRF_LOG_DEBUG("Handle NRF_DFU_OP_MTU_GET"); p_res->mtu.size = p_req->mtu.size; }
Am I misunderstanding anything?