pub trait PollMethod<CS: OutputPin> {
    // Required method
    fn end_command(&self, cs: &mut CS) -> Result<(), CS::Error>;
}
Expand description

Poll Strategy

Required Methods§

source

fn end_command(&self, cs: &mut CS) -> Result<(), CS::Error>

Handles the CS pin state after command has been sent

Implementors§