pub trait I2cExt<I2C> {
    fn i2c<SDA, SCL>(
        self,
        sda: SDA,
        scl: SCL,
        freq: Hertz,
        rcc: &mut Rcc
    ) -> I2c<I2C, SDA, SCL>
    where
        SDA: SDAPin<I2C>,
        SCL: SCLPin<I2C>
; }

Required Methods

Implementors