Trait kernel::hil::dac::DacChannel [] [src]

pub trait DacChannel {
    fn initialize(&self) -> ReturnCode;
fn set_value(&self, value: usize) -> ReturnCode; }

Simple interface for using the DAC.

Required Methods

Initialize and enable the DAC.

Set the DAC output value.

Implementors