Struct dac8568::Dac[][src]

pub struct Dac<SPI, SYNC> { /* fields omitted */ }

DAC8568

Implementations

impl<SPI, SYNC> Dac<SPI, SYNC> where
    SPI: Write<u8>,
    SYNC: OutputPin
[src]

pub fn new(spi: SPI, sync: SYNC) -> Self[src]

Initialize a new instance of dac8568

pub fn release(self) -> (SPI, SYNC)[src]

Consume the dac and return the underlying SPI and GPIO pins used by it

pub fn write(&mut self, message: Message) -> Result<(), DacError>[src]

Write to the DAC via a blocking call on the specified SPI interface

Auto Trait Implementations

impl<SPI, SYNC> Send for Dac<SPI, SYNC> where
    SPI: Send,
    SYNC: Send

impl<SPI, SYNC> Sync for Dac<SPI, SYNC> where
    SPI: Sync,
    SYNC: Sync

impl<SPI, SYNC> Unpin for Dac<SPI, SYNC> where
    SPI: Unpin,
    SYNC: 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.