Trait kernel::hil::spi::cs::ChipSelectActivePolarity

source ·
pub trait ChipSelectActivePolarity: Sealed {
    const POLARITY: Polarity;
}
Expand description

Marker trait indicating whether a peripheral requires active high or low polarity as well as whether a SpiMaster implementation can support either or both polarities.

This trait is sealed and only implemented for ActiveLow and ActiveHigh.

Required Associated Constants§

Object Safety§

This trait is not object safe.

Implementors§