[][src]Struct stm32f1xx_hal::i2c::BlockingI2c

pub struct BlockingI2c<I2C, PINS> { /* fields omitted */ }

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]

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]

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]

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]

Trait Implementations

impl<PINS> Read for BlockingI2c<I2C1, PINS>[src]

type Error = NbError<Error>

Error type

impl<PINS> Read for BlockingI2c<I2C2, PINS>[src]

type Error = NbError<Error>

Error type

impl<PINS> Write for BlockingI2c<I2C1, PINS>[src]

type Error = NbError<Error>

Error type

impl<PINS> Write for BlockingI2c<I2C2, PINS>[src]

type Error = NbError<Error>

Error type

impl<PINS> WriteRead for BlockingI2c<I2C1, PINS>[src]

type Error = NbError<Error>

Error type

impl<PINS> WriteRead for BlockingI2c<I2C2, PINS>[src]

type Error = NbError<Error>

Error type

Auto Trait Implementations

impl<I2C, PINS> Send for BlockingI2c<I2C, PINS> where
    I2C: Send,
    PINS: Send

impl<I2C, PINS> Sync for BlockingI2c<I2C, PINS> where
    I2C: Sync,
    PINS: Sync

Blanket Implementations

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> From for T[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same for T

type Output = T

Should always be Self