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

Trait used to control the SS line during an SpiFuture transaction

Required Methods

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

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

Implementors