logo
pub trait GpioExt {
    fn set_alt_mode(&self, pin: Pin, mode: AltMode) -> &Self;
fn set_output(&self, pin: Pin) -> &Self;
fn set_input(&self, pin: Pin) -> &Self; }

Required methods

Configure the alternate function mode of the specified pin.

Configure the specified pin for output.

Configure the specified pin for input.

Implementations on Foreign Types

Implementors