pub trait SpiExt<SPI>: Sized {
    fn spi<PINS, T>(
        self,
        pins: PINS,
        mode: Mode,
        freq: T,
        rcc: &mut Rcc
    ) -> Spi<SPI, PINS>
    where
        PINS: Pins<SPI>,
        T: Into<Hertz>
; }

Required Methods

Implementors