[][src]Struct e310x_hal::i2c::I2c

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

I2C abstraction

Methods

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

pub fn new(i2c: I2C0, sda: SDA, scl: SCL, speed: Speed, clocks: Clocks) -> Self where
    SDA: SdaPin<I2C0>,
    SCL: SclPin<I2C0>, 
[src]

Configures an I2C peripheral

impl<I2C, PINS> I2c<I2C, PINS>[src]

pub fn free(self) -> (I2C, PINS)[src]

Releases the I2C peripheral and associated pins

Trait Implementations

impl<I2C: Deref<Target = RegisterBlock>, PINS> Read for I2c<I2C, PINS>[src]

type Error = Error

Error type

impl<I2C: Deref<Target = RegisterBlock>, PINS> Write for I2c<I2C, PINS>[src]

type Error = Error

Error type

impl<I2C: Deref<Target = RegisterBlock>, PINS> WriteRead for I2c<I2C, 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

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

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.