Struct bxcan::Tx[][src]

pub struct Tx<I> { /* fields omitted */ }
Expand description

Interface to the CAN transmitter part.

Implementations

Puts a CAN frame in a transmit mailbox for transmission on the bus.

Frames are transmitted to the bus based on their priority (identifier). Transmit order is preserved for frames with identical identifiers.

If all transmit mailboxes are full, a higher priority frame can replace a lower-priority frame, which is returned in the TransmitStatus.

Attempts to abort the sending of a frame that is pending in a mailbox.

If there is no frame in the provided mailbox, or its transmission succeeds before it can be aborted, this function has no effect and returns false.

If there is a frame in the provided mailbox, and it is canceled successfully, this function returns true.

Returns true if no frame is pending for transmission.

Clears the request complete flag for all mailboxes.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.