dac8564 0.0.1

A simple platform agnostic library for the Texas Instruments DAC8564
Documentation
# dac8564

A simple platform agnostic library for the Texas Instruments DAC8564.

## example

Note: Quick example based on the `stm32h7xx-hal`.

### blocking

```
fn main() -> ! {
    // SPI interface pins
    let sck = sck.into_alternate_af5();
    let mosi = mosi.into_alternate_af5();

    // Control lines
    let ldac = ldac.into_push_pull_output();
    let enable = enable.into_push_pull_output();
    let nss = nss.into_push_pull_output();

    let spi: Spi<SPI2, Enabled> = interface.spi(
        (sck, NoMiso, mosi),
        spi::MODE_0,
        20.mhz(),
        prec,
        clocks,
    );

    let mut dac = dac8564::Dac::new(nss, ldac, enable);
    dac.enable();

    // Blocking call. Set value to 1000 on the DAC
    dac.write_blocking(&spi, Channel::A, 1000);
}

```

### non-blocking

```
fn main() -> ! {
    let mut dac = dac8564::Dac::new(nss, ldac, enable);
    dac.enable();

    // Blocking call. Set value to 1000 on the DAC
    dac.prepare_transfer(Channel::A, 1000, |payload| {
        // Write values to a DMA buffer
    });
}

```