CanCommon

Trait CanCommon 

Source
pub trait CanCommon {
    type Tx;
    type Rx<PULL>;
}
Expand description

CAN pins

Required Associated Types§

Source

type Tx

Transmit

Alternate function push-pull

Source

type Rx<PULL>

Receive

Input floating / Input pull-up

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl CanCommon for CAN

Source§

type Tx = Tx

Source§

type Rx<PULL> = Rx<PULL>