pub struct I2c<'d, M: Mode> { /* private fields */ }
Expand description
I2C driver.
Implementations§
source§impl<'d, M: PeriMode> I2c<'d, M>
impl<'d, M: PeriMode> I2c<'d, M>
sourcepub fn blocking_write_read(
&mut self,
addr: u8,
write: &[u8],
read: &mut [u8],
) -> Result<(), Error>
pub fn blocking_write_read( &mut self, addr: u8, write: &[u8], read: &mut [u8], ) -> Result<(), Error>
Blocking write, restart, read.
sourcepub fn blocking_transaction(
&mut self,
addr: u8,
operations: &mut [Operation<'_>],
) -> Result<(), Error>
pub fn blocking_transaction( &mut self, addr: u8, operations: &mut [Operation<'_>], ) -> Result<(), Error>
Blocking transaction with operations.
Consecutive operations of same type are merged. See transaction contract for details.
source§impl<'d> I2c<'d, Async>
impl<'d> I2c<'d, Async>
sourcepub async fn write_read(
&mut self,
address: u8,
write: &[u8],
read: &mut [u8],
) -> Result<(), Error>
pub async fn write_read( &mut self, address: u8, write: &[u8], read: &mut [u8], ) -> Result<(), Error>
Write, restart, read.
sourcepub async fn transaction(
&mut self,
addr: u8,
operations: &mut [Operation<'_>],
) -> Result<(), Error>
pub async fn transaction( &mut self, addr: u8, operations: &mut [Operation<'_>], ) -> Result<(), Error>
Transaction with operations.
Consecutive operations of same type are merged. See transaction contract for details.
source§impl<'d> I2c<'d, Async>
impl<'d> I2c<'d, Async>
sourcepub fn new<T: Instance>(
peri: impl Peripheral<P = T> + 'd,
scl: impl Peripheral<P = impl SclPin<T>> + 'd,
sda: impl Peripheral<P = impl SdaPin<T>> + 'd,
_irq: impl Binding<T::EventInterrupt, EventInterruptHandler<T>> + Binding<T::ErrorInterrupt, ErrorInterruptHandler<T>> + 'd,
tx_dma: impl Peripheral<P = impl TxDma<T>> + 'd,
rx_dma: impl Peripheral<P = impl RxDma<T>> + 'd,
freq: Hertz,
config: Config,
) -> Self
pub fn new<T: Instance>( peri: impl Peripheral<P = T> + 'd, scl: impl Peripheral<P = impl SclPin<T>> + 'd, sda: impl Peripheral<P = impl SdaPin<T>> + 'd, _irq: impl Binding<T::EventInterrupt, EventInterruptHandler<T>> + Binding<T::ErrorInterrupt, ErrorInterruptHandler<T>> + 'd, tx_dma: impl Peripheral<P = impl TxDma<T>> + 'd, rx_dma: impl Peripheral<P = impl RxDma<T>> + 'd, freq: Hertz, config: Config, ) -> Self
Create a new I2C driver.
source§impl<'d> I2c<'d, Blocking>
impl<'d> I2c<'d, Blocking>
sourcepub fn new_blocking<T: Instance>(
peri: impl Peripheral<P = T> + 'd,
scl: impl Peripheral<P = impl SclPin<T>> + 'd,
sda: impl Peripheral<P = impl SdaPin<T>> + 'd,
freq: Hertz,
config: Config,
) -> Self
pub fn new_blocking<T: Instance>( peri: impl Peripheral<P = T> + 'd, scl: impl Peripheral<P = impl SclPin<T>> + 'd, sda: impl Peripheral<P = impl SdaPin<T>> + 'd, freq: Hertz, config: Config, ) -> Self
Create a new blocking I2C driver.
Trait Implementations§
source§impl<'d> I2c for I2c<'d, Async>
impl<'d> I2c for I2c<'d, Async>
source§async fn write(&mut self, address: u8, write: &[u8]) -> Result<(), Self::Error>
async fn write(&mut self, address: u8, write: &[u8]) -> Result<(), Self::Error>
Writes bytes to slave with address
address
. Read moresource§impl<'d, M: Mode> I2c for I2c<'d, M>
impl<'d, M: Mode> I2c for I2c<'d, M>
source§fn write(&mut self, address: u8, write: &[u8]) -> Result<(), Self::Error>
fn write(&mut self, address: u8, write: &[u8]) -> Result<(), Self::Error>
Writes bytes to slave with address
address
. Read moreAuto Trait Implementations§
impl<'d, M> Freeze for I2c<'d, M>
impl<'d, M> !RefUnwindSafe for I2c<'d, M>
impl<'d, M> Send for I2c<'d, M>where
M: Send,
impl<'d, M> Sync for I2c<'d, M>where
M: Sync,
impl<'d, M> Unpin for I2c<'d, M>where
M: Unpin,
impl<'d, M> !UnwindSafe for I2c<'d, M>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more