Embassy
embassy-stm32

Crates

git

Versions

stm32f767vi

Flavors

Trait embassy_stm32::can::Instance

source ·
pub trait Instance: Peripheral<P = Self> + SealedInstance + RccPeripheral + 'static {
    type TXInterrupt: Interrupt;
    type RX0Interrupt: Interrupt;
    type RX1Interrupt: Interrupt;
    type SCEInterrupt: Interrupt;
}
Expand description

CAN instance trait.

Required Associated Types§

source

type TXInterrupt: Interrupt

TX interrupt for this instance.

source

type RX0Interrupt: Interrupt

RX0 interrupt for this instance.

source

type RX1Interrupt: Interrupt

RX1 interrupt for this instance.

source

type SCEInterrupt: Interrupt

SCE interrupt for this instance.

Object Safety§

This trait is not object safe.

Implementors§