Trait EarlGreyPinmuxConfig

Source
pub trait EarlGreyPinmuxConfig {
    const INPUT: &'static [PinmuxInsel; 57];
    const OUTPUT: &'static [PinmuxOutsel; 47];

    // Provided method
    fn setup() { ... }
}
Expand description

Representations of Earlgrey pinmux configuration on targeted board

Required Associated Constants§

Source

const INPUT: &'static [PinmuxInsel; 57]

Array representing configuration of pinmux input selctor

Source

const OUTPUT: &'static [PinmuxOutsel; 47]

Array representing configurations of pinmux output selecto

Provided Methods§

Source

fn setup()

Setup pinmux configurations for all multiplexed pads

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§