[][src]Struct stm32l4xx_hal::spi::Spi

pub struct Spi<SPI, PINS> { /* fields omitted */ }

SPI peripheral operating in full duplex master mode

Methods

impl<PINS> Spi<SPI1, PINS>[src]

pub fn spi1<F>(
    spi: SPI1,
    pins: PINS,
    mode: Mode,
    freq: F,
    clocks: Clocks,
    apb2: &mut APB2
) -> Self where
    F: Into<Hertz>,
    PINS: Pins<SPI1>, 
[src]

Configures the SPI peripheral to operate in full duplex master mode

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

Releases the SPI peripheral and associated pins

impl<PINS> Spi<SPI3, PINS>[src]

pub fn spi3<F>(
    spi: SPI3,
    pins: PINS,
    mode: Mode,
    freq: F,
    clocks: Clocks,
    apb2: &mut APB1R1
) -> Self where
    F: Into<Hertz>,
    PINS: Pins<SPI3>, 
[src]

Configures the SPI peripheral to operate in full duplex master mode

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

Releases the SPI peripheral and associated pins

Trait Implementations

impl<PINS> Default<u8> for Spi<SPI1, PINS>[src]

impl<PINS> Default<u8> for Spi<SPI3, PINS>[src]

impl<PINS> Default<u8> for Spi<SPI1, PINS>[src]

impl<PINS> Default<u8> for Spi<SPI3, PINS>[src]

impl<PINS> FullDuplex<u8> for Spi<SPI1, PINS>[src]

type Error = Error

An enumeration of SPI errors

impl<PINS> FullDuplex<u8> for Spi<SPI3, PINS>[src]

type Error = Error

An enumeration of SPI errors

Auto Trait Implementations

impl<SPI, PINS> Send for Spi<SPI, PINS> where
    PINS: Send,
    SPI: Send

impl<SPI, PINS> Sync for Spi<SPI, PINS> where
    PINS: Sync,
    SPI: 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<W, S> Transfer for S where
    S: Default<W>,
    W: Clone
[src]

type Error = <S as FullDuplex<W>>::Error

Error type

impl<W, S> Write for S where
    S: Default<W>,
    W: Clone
[src]

type Error = <S as FullDuplex<W>>::Error

Error type

impl<T> Same for T

type Output = T

Should always be Self