Trait GpioExt

Source
pub trait GpioExt {
    type Parts;

    // Required method
    fn split(self, rcc: &mut Rcc) -> Self::Parts;
}
Expand description

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

Required Associated Types§

Source

type Parts

The parts to split the GPIO into

Required Methods§

Source

fn split(self, rcc: &mut Rcc) -> Self::Parts

Splits the GPIO block into independent pins and registers

Implementors§