pub trait Pins<TIM, P> {
    type Channels;

    const C1: bool = false;
    const C2: bool = false;
    const C3: bool = false;
    const C4: bool = false;

    fn split() -> Self::Channels;

    fn check_used(c: Channel) -> Channel { ... }
}

Required Associated Types

Provided Associated Constants

Required Methods

Provided Methods

Implementations on Foreign Types

Implementors