pub unsafe extern "C" fn MSS_CAN_get_tx_buffer_status(
this_can: *mut mss_can_instance_t,
) -> u32Expand description
The MSS_CAN_get_tx_buffer_status() function returns the buffer status of all transmit(32) mailboxes.
@param this_can The this_can parameter is a pointer to the mss_can_instance_t structure.
@return This function returns status of transmit buffers (32 buffers).
Example: @code e51() { uint32_t return_status = 0; … return_status = MSS_CAN_get_tx_buffer_status(&g_mss_can_0_lo); … } @endcode