pub trait GpioExt {
    type Parts;

    fn split() -> Self::Parts;
}
Expand description

Extension trait to split a mock GPIO peripheral into independent pins

Required Associated Types

The type to split the GPIO into

Required Methods

Split the GPIO block into independent pins and registers

Implementors