Struct imxrt10xx::lpi2c::Lpi2c

source ·
pub struct Lpi2c<'a> { /* private fields */ }

Implementations§

source§

impl<'a> Lpi2c<'a>

source

pub fn new_lpi2c1(ccm: &'a Ccm) -> Self

source

pub fn set_speed(&self, speed: Lpi2cSpeed, _system_clock_in_mhz: usize)

source

pub fn is_enabled_clock(&self) -> bool

source

pub fn enable_clock(&self)

source

pub fn disable_clock(&self)

source

pub fn send_byte(&self) -> bool

source

pub fn read_byte(&self) -> bool

source

pub fn handle_event(&self)

source

pub fn handle_error(&self)

Trait Implementations§

source§

impl<'a> I2CMaster<'a> for Lpi2c<'a>

source§

fn set_master_client(&self, master_client: &'a dyn I2CHwMasterClient)

source§

fn enable(&self)

source§

fn disable(&self)

source§

fn write_read( &self, addr: u8, data: &'static mut [u8], write_len: usize, read_len: usize ) -> Result<(), (Error, &'static mut [u8])>

source§

fn write( &self, addr: u8, data: &'static mut [u8], len: usize ) -> Result<(), (Error, &'static mut [u8])>

source§

fn read( &self, addr: u8, buffer: &'static mut [u8], len: usize ) -> Result<(), (Error, &'static mut [u8])>

Auto Trait Implementations§

§

impl<'a> !Freeze for Lpi2c<'a>

§

impl<'a> !RefUnwindSafe for Lpi2c<'a>

§

impl<'a> !Send for Lpi2c<'a>

§

impl<'a> !Sync for Lpi2c<'a>

§

impl<'a> Unpin for Lpi2c<'a>

§

impl<'a> !UnwindSafe for Lpi2c<'a>

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> SizedTypeProperties for T

source§

#[doc(hidden)] const IS_ZST: bool = _

🔬This is a nightly-only experimental API. (sized_type_properties)
true if this type requires no storage. false if its size is greater than zero. Read more
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.