[][src]Struct bno080::interface::spi::SpiInterface

pub struct SpiInterface<SPI, CSN, IN, RSTN> { /* fields omitted */ }

This combines the SPI peripheral and associated control pins

Methods

impl<SPI, CSN, IN, RSTN, CommE, PinE> SpiInterface<SPI, CSN, IN, RSTN> where
    SPI: Write<u8, Error = CommE> + Transfer<u8, Error = CommE>,
    CSN: OutputPin<Error = PinE>,
    IN: InputPin<Error = PinE>,
    RSTN: OutputPin<Error = PinE>,
    CommE: Debug,
    PinE: Debug
[src]

pub fn new(lines: SpiControlLines<SPI, CSN, IN, RSTN>) -> Self[src]

Trait Implementations

impl<SPI, CSN, IN, RS, CommE, PinE> SensorInterface for SpiInterface<SPI, CSN, IN, RS> where
    SPI: Write<u8, Error = CommE> + Transfer<u8, Error = CommE>,
    CSN: OutputPin<Error = PinE>,
    IN: InputPin<Error = PinE>,
    RS: OutputPin<Error = PinE>,
    CommE: Debug,
    PinE: Debug
[src]

type SensorError = Error<CommE, PinE>

Interface error type

fn read_packet(
    &mut self,
    recv_buf: &mut [u8]
) -> Result<usize, Self::SensorError>
[src]

Read a complete packet from the sensor

Auto Trait Implementations

impl<SPI, CSN, IN, RSTN> Send for SpiInterface<SPI, CSN, IN, RSTN> where
    CSN: Send,
    IN: Send,
    RSTN: Send,
    SPI: Send

impl<SPI, CSN, IN, RSTN> Sync for SpiInterface<SPI, CSN, IN, RSTN> where
    CSN: Sync,
    IN: Sync,
    RSTN: Sync,
    SPI: Sync

impl<SPI, CSN, IN, RSTN> Unpin for SpiInterface<SPI, CSN, IN, RSTN> where
    CSN: Unpin,
    IN: Unpin,
    RSTN: Unpin,
    SPI: 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<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.