pub trait DipoDopo {
const DIPO_DOPO: (u8, u8);
}
Expand description
Configure the DIPO
and DOPO
fields based on a set of Pads
According to the datasheet, the DIPO
and DOPO
values specify which
SERCOM pads are used for various functions. Moreover, depending on which
pads are actually in use, only certain combinations of these values make
sense and are valid.
This trait is implemented for valid, four-tuple combinations of
OptionalPadNum
s. Those implementations are then lifted to the
corresponding Pads
types.
To satisfy this trait, the combination of OptionalPadNum
s must specify a
PadNum
for CK
and at least one of DI
and DO
. Furthermore, no two
PadNum
s can conflict.
Required Associated Constants§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementations on Foreign Types§
Implementors§
Source§impl<S, DI, DO, CK, SS> DipoDopo for Pads<S, DI, DO, CK, SS>where
S: Sercom,
DI: OptionalPad,
DO: OptionalPad,
CK: OptionalPad,
SS: OptionalPad,
(DI::PadNum, DO::PadNum, CK::PadNum, SS::PadNum): DipoDopo,
Lift the implementations of DipoDopo
from four-tuples of
OptionalPadNum
s to the corresponding Pads
types.
impl<S, DI, DO, CK, SS> DipoDopo for Pads<S, DI, DO, CK, SS>where
S: Sercom,
DI: OptionalPad,
DO: OptionalPad,
CK: OptionalPad,
SS: OptionalPad,
(DI::PadNum, DO::PadNum, CK::PadNum, SS::PadNum): DipoDopo,
Lift the implementations of DipoDopo
from four-tuples of
OptionalPadNum
s to the corresponding Pads
types.