[−][src]Trait lpc55_hal::prelude::_embedded_hal_blocking_i2c_Write
Blocking write
Associated Types
type Error
Error type
Required methods
fn write(&mut self, addr: u8, bytes: &[u8]) -> Result<(), Self::Error>
Sends bytes to slave with address addr
I2C Events (contract)
Master: ST SAD+W B0 B1 ... BN SP
Slave: SAK SAK SAK ... SAK
Where
ST
= start conditionSAD+W
= slave address followed by bit 0 to indicate writingSAK
= slave acknowledgeBi
= ith byte of dataSP
= stop condition
Implementors
impl<PIO1, PIO2, I2C, PINS> Write for I2cMaster<PIO1, PIO2, I2C, PINS> where
PIO1: PinId,
PIO2: PinId,
I2C: I2c,
PINS: I2cPins<PIO1, PIO2, I2C>,
[src]
PIO1: PinId,
PIO2: PinId,
I2C: I2c,
PINS: I2cPins<PIO1, PIO2, I2C>,