Embassy
embassy-stm32

Crates

git

Versions

stm32g473cc

Flavors

Struct embassy_stm32::can::Can

source ·
pub struct Can<'d, T: Instance> { /* private fields */ }
Expand description

FDCAN Instance

Implementations§

source§

impl<'d, T: Instance> Can<'d, T>

source

pub fn properties(&self) -> &Properties<T>

Get driver properties

source

pub async fn flush(&self, idx: usize)

Flush one of the TX mailboxes.

source

pub async fn write(&mut self, frame: &Frame) -> Option<Frame>

Queues the message to be sent but exerts backpressure. If a lower-priority frame is dropped from the mailbox, it is returned. If no lower-priority frames can be replaced, this call asynchronously waits for a frame to be successfully transmitted, then tries again.

source

pub async fn read(&mut self) -> Result<Envelope, BusError>

Returns the next received message frame

source

pub async fn write_fd(&mut self, frame: &FdFrame) -> Option<FdFrame>

Queues the message to be sent but exerts backpressure. If a lower-priority frame is dropped from the mailbox, it is returned. If no lower-priority frames can be replaced, this call asynchronously waits for a frame to be successfully transmitted, then tries again.

source

pub async fn read_fd(&mut self) -> Result<FdEnvelope, BusError>

Returns the next received message frame

source

pub fn split(self) -> (CanTx<'d, T>, CanRx<'d, T>, Properties<T>)

Split instance into separate portions: Tx(write), Rx(read), common properties

source

pub fn join(tx: CanTx<'d, T>, rx: CanRx<'d, T>) -> Self

Join split rx and tx portions back together

source

pub fn buffered<const TX_BUF_SIZE: usize, const RX_BUF_SIZE: usize>( &self, tx_buf: &'static mut TxBuf<TX_BUF_SIZE>, rxb: &'static mut RxBuf<RX_BUF_SIZE> ) -> BufferedCan<'d, T, TX_BUF_SIZE, RX_BUF_SIZE>

Return a buffered instance of driver without CAN FD support. User must supply Buffers

source

pub fn buffered_fd<const TX_BUF_SIZE: usize, const RX_BUF_SIZE: usize>( &self, tx_buf: &'static mut TxFdBuf<TX_BUF_SIZE>, rxb: &'static mut RxFdBuf<RX_BUF_SIZE> ) -> BufferedCanFd<'d, T, TX_BUF_SIZE, RX_BUF_SIZE>

Return a buffered instance of driver with CAN FD support. User must supply Buffers

Auto Trait Implementations§

§

impl<'d, T> Freeze for Can<'d, T>
where T: Freeze,

§

impl<'d, T> RefUnwindSafe for Can<'d, T>
where T: RefUnwindSafe,

§

impl<'d, T> !Send for Can<'d, T>

§

impl<'d, T> !Sync for Can<'d, T>

§

impl<'d, T> Unpin for Can<'d, T>
where T: Unpin,

§

impl<'d, T> !UnwindSafe for Can<'d, T>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.