Trait kernel::hil::can::Transmit

source ·
pub trait Transmit<const PACKET_SIZE: usize> {
    const PACKET_SIZE: usize = PACKET_SIZE;

    // Required methods
    fn set_client(
        &self,
        client: Option<&'static dyn TransmitClient<PACKET_SIZE>>
    );
    fn send(
        &self,
        id: Id,
        buffer: &'static mut [u8; PACKET_SIZE],
        len: usize
    ) -> Result<(), (ErrorCode, &'static mut [u8; PACKET_SIZE])>;
}
Expand description

The Transmit trait is used to interact with the CAN driver through transmission requests only.

The CAN peripheral must be configured first, in order to be able to send data.

Provided Associated Constants§

source

const PACKET_SIZE: usize = PACKET_SIZE

Required Methods§

source

fn set_client(&self, client: Option<&'static dyn TransmitClient<PACKET_SIZE>>)

Set the client to be used for callbacks of the Transmit implementation.

source

fn send( &self, id: Id, buffer: &'static mut [u8; PACKET_SIZE], len: usize ) -> Result<(), (ErrorCode, &'static mut [u8; PACKET_SIZE])>

Sends a buffer using the CAN bus.

In most cases, this function should be called after the peripheral was previously configures and at least one filter has been enabled.

§Arguments:
  • id - The identifier of the message (standard or extended)
  • buffer - Data to be written on the bus
  • len - Length of the current message
§Return values:
  • Ok() - The transmission request was successful and the caller will receive a for the transmit_complete callback function call
  • Err(ErrorCode, &'static mut [u8]) - a tuple with the error that occurred during the transmission request and the buffer that was provided as an argument to the function

Object Safety§

This trait is not object safe.

Implementors§