[−][src]Struct stm32f7x7_hal::i2c::I2c
I2C abstraction
Methods
impl<PINS> I2c<I2C1, PINS>[src]
pub fn i2c1(i2c: I2C1, pins: PINS, speed: KiloHertz, clocks: Clocks) -> Self where
PINS: Pins<I2C1>, [src]
PINS: Pins<I2C1>,
impl<PINS> I2c<I2C2, PINS>[src]
pub fn i2c2(i2c: I2C2, pins: PINS, speed: KiloHertz, clocks: Clocks) -> Self where
PINS: Pins<I2C2>, [src]
PINS: Pins<I2C2>,
impl<PINS> I2c<I2C3, PINS>[src]
pub fn i2c3(i2c: I2C3, pins: PINS, speed: KiloHertz, clocks: Clocks) -> Self where
PINS: Pins<I2C3>, [src]
PINS: Pins<I2C3>,
impl<I2C, PINS> I2c<I2C, PINS> where
I2C: Deref<Target = RegisterBlock>, [src]
I2C: Deref<Target = RegisterBlock>,
Trait Implementations
impl<I2C, PINS> Read for I2c<I2C, PINS> where
I2C: Deref<Target = RegisterBlock>, [src]
I2C: Deref<Target = RegisterBlock>,
type Error = Error
Error type
fn read(&mut self, addr: u8, buffer: &mut [u8]) -> Result<(), Self::Error>[src]
impl<I2C, PINS> Write for I2c<I2C, PINS> where
I2C: Deref<Target = RegisterBlock>, [src]
I2C: Deref<Target = RegisterBlock>,
impl<I2C, PINS> WriteRead for I2c<I2C, PINS> where
I2C: Deref<Target = RegisterBlock>, [src]
I2C: Deref<Target = RegisterBlock>,
Auto Trait Implementations
impl<I2C, PINS> Send for I2c<I2C, PINS> where
I2C: Send,
PINS: Send,
I2C: Send,
PINS: Send,
impl<I2C, PINS> Sync for I2c<I2C, PINS> where
I2C: Sync,
PINS: Sync,
I2C: Sync,
PINS: Sync,
Blanket Implementations
impl<T, U> TryFrom<U> 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> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> From<T> for T[src]
impl<T, U> TryInto<U> 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> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> 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,
impl<T> Same<T> for T
type Output = T
Should always be Self