pub trait PollClient {
    type Error;

    // Required method
    fn adc_ready(&mut self) -> Result<bool, Self::Error>;
}
Expand description

Public LTC681X interface for polling ADC status

Required Associated Types§

Required Methods§

source

fn adc_ready(&mut self) -> Result<bool, Self::Error>

Returns true if the ADC is not busy

Implementors§

source§

impl<B, CS, T, const L: usize> PollClient for LTC681X<B, CS, SDOLinePolling, T, L>
where B: Transfer<u8>, CS: OutputPin, T: DeviceTypes,

§

type Error = Error<B, CS>