[−][src]Struct stm32f103xx_hal::i2c::BlockingI2c  
Methods
impl<PINS> BlockingI2c<I2C1, PINS>[src]
pub fn i2c1(
    i2c: I2C1, 
    pins: PINS, 
    mapr: &mut MAPR, 
    mode: Mode, 
    clocks: Clocks, 
    apb: &mut APB1, 
    start_timeout_us: u32, 
    start_retries: u8, 
    addr_timeout_us: u32, 
    data_timeout_us: u32
) -> Self where
    PINS: Pins<I2C1>, [src]
i2c: I2C1,
pins: PINS,
mapr: &mut MAPR,
mode: Mode,
clocks: Clocks,
apb: &mut APB1,
start_timeout_us: u32,
start_retries: u8,
addr_timeout_us: u32,
data_timeout_us: u32
) -> Self where
PINS: Pins<I2C1>,
impl<PINS> BlockingI2c<I2C2, PINS>[src]
pub fn i2c2(
    i2c: I2C2, 
    pins: PINS, 
    mode: Mode, 
    clocks: Clocks, 
    apb: &mut APB1, 
    start_timeout_us: u32, 
    start_retries: u8, 
    addr_timeout_us: u32, 
    data_timeout_us: u32
) -> Self where
    PINS: Pins<I2C2>, [src]
i2c: I2C2,
pins: PINS,
mode: Mode,
clocks: Clocks,
apb: &mut APB1,
start_timeout_us: u32,
start_retries: u8,
addr_timeout_us: u32,
data_timeout_us: u32
) -> Self where
PINS: Pins<I2C2>,
impl<PINS> BlockingI2c<I2C1, PINS>[src]
pub fn _i2c1(
    i2c: I2C1, 
    pins: PINS, 
    mode: Mode, 
    clocks: Clocks, 
    apb: &mut APB1, 
    start_timeout_us: u32, 
    start_retries: u8, 
    addr_timeout_us: u32, 
    data_timeout_us: u32
) -> Self[src]
i2c: I2C1,
pins: PINS,
mode: Mode,
clocks: Clocks,
apb: &mut APB1,
start_timeout_us: u32,
start_retries: u8,
addr_timeout_us: u32,
data_timeout_us: u32
) -> Self
impl<PINS> BlockingI2c<I2C2, PINS>[src]
pub fn _i2c2(
    i2c: I2C2, 
    pins: PINS, 
    mode: Mode, 
    clocks: Clocks, 
    apb: &mut APB1, 
    start_timeout_us: u32, 
    start_retries: u8, 
    addr_timeout_us: u32, 
    data_timeout_us: u32
) -> Self[src]
i2c: I2C2,
pins: PINS,
mode: Mode,
clocks: Clocks,
apb: &mut APB1,
start_timeout_us: u32,
start_retries: u8,
addr_timeout_us: u32,
data_timeout_us: u32
) -> Self
Trait Implementations
impl<PINS> Read for BlockingI2c<I2C1, PINS>[src]
type Error = NbError<Error>
Error type
fn read(&mut self, addr: u8, buffer: &mut [u8]) -> Result<(), Self::Error>[src]
impl<PINS> Read for BlockingI2c<I2C2, PINS>[src]
type Error = NbError<Error>
Error type
fn read(&mut self, addr: u8, buffer: &mut [u8]) -> Result<(), Self::Error>[src]
impl<PINS> Write for BlockingI2c<I2C1, PINS>[src]
type Error = NbError<Error>
Error type
fn write(&mut self, addr: u8, bytes: &[u8]) -> Result<(), Self::Error>[src]
impl<PINS> Write for BlockingI2c<I2C2, PINS>[src]
type Error = NbError<Error>
Error type
fn write(&mut self, addr: u8, bytes: &[u8]) -> Result<(), Self::Error>[src]
impl<PINS> WriteRead for BlockingI2c<I2C1, PINS>[src]
type Error = NbError<Error>
Error type
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>
impl<PINS> WriteRead for BlockingI2c<I2C2, PINS>[src]
Auto Trait Implementations
impl<I2C, PINS> Send for BlockingI2c<I2C, PINS> where
    I2C: Send,
    PINS: Send, 
I2C: Send,
PINS: Send,
impl<I2C, PINS> Sync for BlockingI2c<I2C, PINS> where
    I2C: Sync,
    PINS: Sync, 
I2C: Sync,
PINS: Sync,
Blanket Implementations
impl<T> From for T[src]
impl<T, U> TryFrom for T where
    U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto for T where
    U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T, U> Into for T where
    U: From<T>, [src]
U: From<T>,
impl<T> Borrow for T where
    T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut for T where
    T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Any for T where
    T: 'static + ?Sized, [src]
T: 'static + ?Sized,