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

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

    fn split() -> Self::Channels;

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

Associated Types

Associated Constants

Required methods

Provided methods

Implementations on Foreign Types

Implementors