[−][src]Struct stm32f1xx_hal::spi::Spi
Methods
impl<PINS> Spi<SPI1, PINS>[src]
pub fn spi1<F>(
spi: SPI1,
pins: PINS,
mapr: &mut MAPR,
mode: Mode,
freq: F,
clocks: Clocks,
apb: &mut APB2
) -> Self where
F: Into<Hertz>,
PINS: Pins<SPI1>, [src]
spi: SPI1,
pins: PINS,
mapr: &mut MAPR,
mode: Mode,
freq: F,
clocks: Clocks,
apb: &mut APB2
) -> Self where
F: Into<Hertz>,
PINS: Pins<SPI1>,
impl<PINS> Spi<SPI2, PINS>[src]
pub fn spi2<F>(
spi: SPI2,
pins: PINS,
mode: Mode,
freq: F,
clocks: Clocks,
apb: &mut APB1
) -> Self where
F: Into<Hertz>,
PINS: Pins<SPI2>, [src]
spi: SPI2,
pins: PINS,
mode: Mode,
freq: F,
clocks: Clocks,
apb: &mut APB1
) -> Self where
F: Into<Hertz>,
PINS: Pins<SPI2>,
impl<PINS> Spi<SPI1, PINS>[src]
impl<PINS> Spi<SPI2, PINS>[src]
Trait Implementations
impl<PINS> Default<u8> for Spi<SPI1, PINS>[src]
impl<PINS> Default<u8> for Spi<SPI2, PINS>[src]
impl<PINS> Default<u8> for Spi<SPI1, PINS>[src]
impl<PINS> Default<u8> for Spi<SPI2, PINS>[src]
impl<PINS> FullDuplex<u8> for Spi<SPI1, PINS>[src]
type Error = Error
An enumeration of SPI errors
fn read(&mut self) -> Result<u8, Error>[src]
fn send(&mut self, byte: u8) -> Result<(), Error>[src]
impl<PINS> FullDuplex<u8> for Spi<SPI2, PINS>[src]
Auto Trait Implementations
impl<SPI, PINS> Unpin for Spi<SPI, PINS> where
PINS: Unpin,
SPI: Unpin,
PINS: Unpin,
SPI: Unpin,
impl<SPI, PINS> Sync for Spi<SPI, PINS> where
PINS: Sync,
SPI: Sync,
PINS: Sync,
SPI: Sync,
impl<SPI, PINS> Send for Spi<SPI, PINS> where
PINS: Send,
SPI: Send,
PINS: Send,
SPI: Send,
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<W, S> Transfer<W> for S where
S: Default<W>,
W: Clone, [src]
S: Default<W>,
W: Clone,
type Error = <S as FullDuplex<W>>::Error
Error type
fn transfer(
&mut self,
words: &'w mut [W]
) -> Result<&'w [W], <S as FullDuplex<W>>::Error>[src]
&mut self,
words: &'w mut [W]
) -> Result<&'w [W], <S as FullDuplex<W>>::Error>
impl<W, S> Write<W> for S where
S: Default<W>,
W: Clone, [src]
S: Default<W>,
W: Clone,
type Error = <S as FullDuplex<W>>::Error
Error type
fn write(&mut self, words: &[W]) -> Result<(), <S as FullDuplex<W>>::Error>[src]
impl<T> Same<T> for T
type Output = T
Should always be Self