pub trait ControlSS: OptionalPin {
    // Required methods
    fn assert(&mut self);
    fn deassert(&mut self);
}
Expand description

Trait used to control the SS line during an SpiFuture transaction

Required Methods§

source

fn assert(&mut self)

If an SS pin is present, assert it by bringing it low

source

fn deassert(&mut self)

If an SS pin is present, deassert it by bringing it high

Implementors§

source§

impl ControlSS for NoneT

source§

impl<P> ControlSS for Pwhere P: SomePin + OutputPin<Error = Infallible>,