[][src]Struct nrf51_hal::Spi

pub struct Spi<T>(_);

Interface to a SPI instance.

Implementations

impl<T> Spi<T> where
    T: Instance
[src]

pub fn new(spi: T, pins: Pins, frequency: FREQUENCY_A, mode: Mode) -> Spi<T>[src]

pub fn free(self) -> T[src]

Return the raw interface to the underlying SPI peripheral.

Trait Implementations

impl<T> Default<u8> for Spi<T> where
    T: Instance,
    Spi<T>: FullDuplex<u8>, 
[src]

impl<T> Default<u8> for Spi<T> where
    T: Instance,
    Spi<T>: FullDuplex<u8>, 
[src]

impl<T> Default<u8> for Spi<T> where
    T: Instance,
    Spi<T>: FullDuplex<u8>, 
[src]

impl<T> FullDuplex<u8> for Spi<T> where
    T: Instance
[src]

type Error = Error

An enumeration of SPI errors

pub fn read(&mut self) -> Result<u8, Error<<Spi<T> as FullDuplex<u8>>::Error>>[src]

Must only be called after send as the interface will read and write at the same time.

pub fn send(
    &mut self,
    byte: u8
) -> Result<(), Error<<Spi<T> as FullDuplex<u8>>::Error>>
[src]

Must only be called the same number of times as read.

nRF51 is double buffered; two bytes can be written before data must be read.

Auto Trait Implementations

impl<T> Send for Spi<T> where
    T: Send

impl<T> Sync for Spi<T> where
    T: Sync

impl<T> Unpin for Spi<T> where
    T: Unpin

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<Src, Dst> LosslessTryInto<Dst> for Src where
    Dst: LosslessTryFrom<Src>, 
[src]

impl<Src, Dst> LossyInto<Dst> for Src where
    Dst: LossyFrom<Src>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

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

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

Error type

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

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

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

Error type

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

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

Error type