pub unsafe extern "C" fn nrf_modem_trace_processed(
    len: usize
) -> c_int
Expand description

Notify the Modem library that the application has completed processing of trace data.

The application shall call this function to let the Modem library free the trace memory. It is the application’s responsibility to call this function with the total size of all trace fragments received. If the data is processed in chunks, the function can be called with the size that is processed since last call.

  • len - Length of trace data that is processed. Returns Zero on success. Returns -NRF_EINVAL * len - is too large to be a valid trace length.