Trait driver_pal::Busy[][src]

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

Busy trait for peripherals that support a busy signal

Associated Types

Required methods

Returns the busy pin state if bound

Implementors

Busy pin implementation for inner objects implementing Busy