Trait driver_pal::Ready[][src]

pub trait Ready {
    type Error;
    fn get_ready(&mut self) -> Result<PinState, Self::Error>;
}
Expand description

Ready trait for peripherals that support a ready signal (or IRQ)

Associated Types

Required methods

Returns the busy pin state if bound

Implementors

Ready pin implementation for inner object implementing Ready