[][src]Struct tmc5160::Tmc5160

pub struct Tmc5160<SPI, CS> { /* fields omitted */ }

TMC5160 driver

Methods

impl<SPI, CS, E> Tmc5160<SPI, CS> where
    SPI: Transfer<u8, Error = E> + Write<u8, Error = E>,
    CS: OutputPin
[src]

pub fn new(spi: SPI, cs: CS) -> Result<Self, E>[src]

Create a new driver from a SPI peripheral and a NCS pin

Auto Trait Implementations

impl<SPI, CS> Send for Tmc5160<SPI, CS> where
    CS: Send,
    SPI: Send

impl<SPI, CS> Sync for Tmc5160<SPI, CS> where
    CS: Sync,
    SPI: Sync

Blanket Implementations

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> Into<U> for T where
    U: From<T>, 
[src]

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

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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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