pub trait GpioExt {
    type Parts;
    fn split(self, ahb: &mut AHB2) -> Self::Parts;
}
Expand description

Extension trait to split a GPIO peripheral in independent pins and registers

Associated Types

The to split the GPIO into

Required methods

Splits the GPIO block into independent pins and registers

Implementors