pub trait InterruptConfig: Sealed {
    const DYN: DynInterrupt;
}
Expand description

Type-level enum for Interrupt configurations

Required Associated Constants§

source

const DYN: DynInterrupt

Corresponding DynInterrupt

Implementors§

source§

impl InterruptConfig for Floating

source§

const DYN: DynInterrupt = DynInterrupt::Floating

source§

impl InterruptConfig for PullDown

source§

const DYN: DynInterrupt = DynInterrupt::PullDown

source§

impl InterruptConfig for PullUp

source§

const DYN: DynInterrupt = DynInterrupt::PullUp