Trait lpc55_hal::prelude::_embedded_hal_blocking_i2c_Read[][src]

pub trait _embedded_hal_blocking_i2c_Read {
    type Error;
    pub fn read(
        &mut self,
        address: u8,
        buffer: &mut [u8]
    ) -> Result<(), Self::Error>; }

Blocking read

Associated Types

type Error[src]

Error type

Loading content...

Required methods

pub fn read(
    &mut self,
    address: u8,
    buffer: &mut [u8]
) -> Result<(), Self::Error>
[src]

Reads enough bytes from slave with address to fill buffer

I2C Events (contract)

Master: ST SAD+R        MAK    MAK ...    NMAK SP
Slave:           SAK B0     B1     ... BN

Where

  • ST = start condition
  • SAD+R = slave address followed by bit 1 to indicate reading
  • SAK = slave acknowledge
  • Bi = ith byte of data
  • MAK = master acknowledge
  • NMAK = master no acknowledge
  • SP = stop condition
Loading content...

Implementors

impl<PIO1, PIO2, I2C, PINS> Read for I2cMaster<PIO1, PIO2, I2C, PINS> where
    PIO1: PinId,
    PIO2: PinId,
    I2C: I2c,
    PINS: I2cPins<PIO1, PIO2, I2C>, 
[src]

type Error = Error

Loading content...