[][src]Function openthread_sys::otLinkOutOfBandTransmitRequest

pub unsafe extern "C" fn otLinkOutOfBandTransmitRequest(
    aInstance: *mut otInstance,
    aOobFrame: *mut otRadioFrame
) -> otError

This function enqueues an IEEE 802.15.4 out of band Frame for transmission.

An Out of Band frame is one that was generated outside of OpenThread.

@param[in] aInstance A pointer to an OpenThread instance. @param[in] aOobFrame A pointer to the frame to transmit.

@retval OT_ERROR_NONE Successfully scheduled the frame transmission. @retval OT_ERROR_ALREADY MAC layer is busy sending a previously requested frame. @retval OT_ERROR_INVALID_STATE The MAC layer is not enabled. @retval OT_ERROR_INVALID_ARGS The argument @p aOobFrame is NULL.