[][src]Struct stm32l4xx_hal::i2c::I2c

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

I2C peripheral operating in master mode

Methods

impl<SCL, SDA> I2c<I2C1, (SCL, SDA)>[src]

pub fn i2c1<F>(
    i2c: I2C1,
    pins: (SCL, SDA),
    freq: F,
    clocks: Clocks,
    apb1: &mut APB1R1
) -> Self where
    F: Into<Hertz>,
    SCL: SclPin<I2C1>,
    SDA: SdaPin<I2C1>, 
[src]

Configures the I2C peripheral to work in master mode

pub fn free(self) -> (I2C1, (SCL, SDA))[src]

Releases the I2C peripheral and associated pins

impl<SCL, SDA> I2c<I2C2, (SCL, SDA)>[src]

pub fn i2c2<F>(
    i2c: I2C2,
    pins: (SCL, SDA),
    freq: F,
    clocks: Clocks,
    apb1: &mut APB1R1
) -> Self where
    F: Into<Hertz>,
    SCL: SclPin<I2C2>,
    SDA: SdaPin<I2C2>, 
[src]

Configures the I2C peripheral to work in master mode

pub fn free(self) -> (I2C2, (SCL, SDA))[src]

Releases the I2C peripheral and associated pins

Trait Implementations

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

type Error = Error

Error type

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

type Error = Error

Error type

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

type Error = Error

Error type

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

type Error = Error

Error type

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

type Error = Error

Error type

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

type Error = Error

Error type

Auto Trait Implementations

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

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

Blanket Implementations

impl<T> From for T[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

🔬 This is a nightly-only experimental API. (try_from)

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