Trait SelectInput

Source
pub trait SelectInput {
    // Required methods
    fn connect_input(self, input: PinmuxInsel);
    fn connect_low(self);
    fn connect_high(self);
    fn lock(self);
    fn get_selector(self) -> PinmuxInsel;
}

Required Methods§

Source

fn connect_input(self, input: PinmuxInsel)

Connect internal peripheral input to particular pad

Source

fn connect_low(self)

Connect internal peripherals input to always low

Source

fn connect_high(self)

Connect internal peripherals input to always high

Source

fn lock(self)

Lock input configurations

Source

fn get_selector(self) -> PinmuxInsel

Get value of current input selection

Implementors§