pub trait GpioExt {
    type Parts;

    fn split(self, power_control: &PowerControl) -> Self::Parts;
}
Expand description

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

Required Associated Types

The to split the GPIO into

Required Methods

Splits the GPIO block into independent pins and registers

Implementations on Foreign Types

Break this GPIO port into separate pins

Break this GPIO port into separate pins

Break this GPIO port into separate pins

Break this GPIO port into separate pins

Break this GPIO port into separate pins

Break this GPIO port into separate pins

Implementors