Struct esp_idf_hal::can::CanDriver

source ·
pub struct CanDriver<'d>(/* private fields */);
Expand description

CAN abstraction

Implementations§

source§

impl<'d> CanDriver<'d>

source

pub fn new( can: impl Peripheral<P = CAN> + 'd, tx: impl Peripheral<P = impl OutputPin> + 'd, rx: impl Peripheral<P = impl InputPin> + 'd, config: &Config ) -> Result<Self, EspError>

source

pub fn start(&mut self) -> Result<(), EspError>

source

pub fn stop(&mut self) -> Result<(), EspError>

source

pub fn transmit( &self, frame: &Frame, timeout: TickType_t ) -> Result<(), EspError>

source

pub fn receive(&self, timeout: TickType_t) -> Result<Frame, EspError>

source

pub fn read_alerts( &self, timeout: TickType_t ) -> Result<EnumSet<Alert>, EspError>

Trait Implementations§

source§

impl<'d> Can for CanDriver<'d>

§

type Frame = Frame

Associated frame type.
§

type Error = Can02Error

Associated error type.
source§

fn transmit(&mut self, frame: &Self::Frame) -> Result<(), Self::Error>

Puts a frame in the transmit buffer. Blocks until space is available in the transmit buffer.
source§

fn receive(&mut self) -> Result<Self::Frame, Self::Error>

Blocks until a frame was received or an error occured.
source§

impl<'d> Can for CanDriver<'d>

§

type Frame = Frame

Associated frame type.
§

type Error = CanError

Associated error type.
source§

fn transmit( &mut self, frame: &Self::Frame ) -> Result<Option<Self::Frame>, Self::Error>

Puts a frame in the transmit buffer to be sent on the bus. Read more
source§

fn receive(&mut self) -> Result<Self::Frame, Self::Error>

Returns a received frame if available.
source§

impl<'d> Can for CanDriver<'d>

§

type Frame = Frame

Associated frame type.
§

type Error = CanError

Associated error type.
source§

fn transmit(&mut self, frame: &Self::Frame) -> Result<(), Self::Error>

Puts a frame in the transmit buffer. Blocks until space is available in the transmit buffer.
source§

fn receive(&mut self) -> Result<Self::Frame, Self::Error>

Blocks until a frame was received or an error occured.
source§

impl<'d> Can for CanDriver<'d>

§

type Frame = Frame

Associated frame type.
§

type Error = Can02Error

Associated error type.
source§

fn transmit( &mut self, frame: &Self::Frame ) -> Result<Option<Self::Frame>, Self::Error>

Puts a frame in the transmit buffer to be sent on the bus. Read more
source§

fn receive(&mut self) -> Result<Self::Frame, Self::Error>

Returns a received frame if available.
source§

impl<'d> Drop for CanDriver<'d>

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl<'d> Send for CanDriver<'d>

Auto Trait Implementations§

§

impl<'d> RefUnwindSafe for CanDriver<'d>

§

impl<'d> !Sync for CanDriver<'d>

§

impl<'d> Unpin for CanDriver<'d>

§

impl<'d> !UnwindSafe for CanDriver<'d>

Blanket Implementations§

§

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

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

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

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

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

§

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

Mutably borrows from an owned value. Read more
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

§

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

§

fn into(self) -> U

Calls U::from(self).

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

§

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

§

type Error = Infallible

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

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

Performs the conversion.
§

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.
§

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

Performs the conversion.