pub unsafe trait PPSPin {
type Output;
// Required method
fn enable(self) -> Self::Output;
}
Expand description
Pins that can be used as PPS output
SAFETY: only pins that are capable of being a PPS output according to the datasheets of respective parts may implement this trait.