[−][src]Trait stm32f103xx_hal::prelude::_embedded_hal_blocking_i2c_WriteRead
Blocking write + read
Associated Types
type Error
Error type
Required methods
fn write_read(
&mut self,
address: u8,
bytes: &[u8],
buffer: &mut [u8]
) -> Result<(), Self::Error>
&mut self,
address: u8,
bytes: &[u8],
buffer: &mut [u8]
) -> Result<(), Self::Error>
Sends bytes to slave with address addr and then reads enough bytes to fill buffer in a
single transaction
I2C Events (contract)
Master: ST SAD+W O0 O1 ... OM SR SAD+R MAK MAK ... NMAK SP
Slave: SAK SAK SAK ... SAK SAK I0 I1 ... IN
Where
ST= start conditionSAD+W= slave address followed by bit 0 to indicate writingSAK= slave acknowledgeOi= ith outgoing byte of dataSR= repeated start conditionSAD+R= slave address followed by bit 1 to indicate readingIi= ith incoming byte of dataMAK= master acknowledgeNMAK= master no acknowledgeSP= stop condition
Implementors
impl<PINS> WriteRead for BlockingI2c<I2C1, PINS>[src]
type Error = NbError<Error>
fn write_read(
&mut self,
addr: u8,
bytes: &[u8],
buffer: &mut [u8]
) -> Result<(), Self::Error>[src]
&mut self,
addr: u8,
bytes: &[u8],
buffer: &mut [u8]
) -> Result<(), Self::Error>