Struct nrf52810_hal::gpio::p0::P0_02[][src]

pub struct P0_02<MODE> { /* fields omitted */ }

Implementations

impl<MODE> P0_02<MODE>[src]

pub fn into_floating_input(self) -> P0_02<Input<Floating>>[src]

Convert the pin to be a floating input

pub fn into_pulldown_input(self) -> P0_02<Input<PullDown>>[src]

pub fn into_pullup_input(self) -> P0_02<Input<PullUp>>[src]

pub fn into_push_pull_output(
    self,
    initial_output: Level
) -> P0_02<Output<PushPull>>
[src]

Convert the pin to bepin a push-pull output with normal drive

pub fn into_open_drain_output(
    self,
    config: OpenDrainConfig,
    initial_output: Level
) -> P0_02<Output<OpenDrain>>
[src]

Convert the pin to be an open-drain output

This method currently does not support configuring an internal pull-up or pull-down resistor.

pub fn into_disconnected(self) -> P0_02<Disconnected>[src]

Disconnects the pin.

In disconnected mode the pin cannot be used as input or output. It is primarily useful to reduce power usage.

pub fn degrade(self) -> Pin<MODE>[src]

Degrade to a generic pin struct, which can be used with peripherals

Trait Implementations

impl<STATE> Channel<Saadc> for P0_02<STATE>[src]

type ID = u8

Channel ID type Read more

impl CompInputPin for P0_02<Input<Floating>>[src]

impl CompRefPin for P0_02<Input<Floating>>[src]

impl<MODE> InputPin for P0_02<Input<MODE>>[src]

type Error = Void

Error type

impl<MODE> OutputPin for P0_02<Output<MODE>>[src]

type Error = Void

Error type

pub fn set_high(
    &mut self
) -> Result<(), <P0_02<Output<MODE>> as OutputPin>::Error>
[src]

Set the output as high

pub fn set_low(
    &mut self
) -> Result<(), <P0_02<Output<MODE>> as OutputPin>::Error>
[src]

Set the output as low

impl<MODE> StatefulOutputPin for P0_02<Output<MODE>>[src]

pub fn is_set_high(
    &self
) -> Result<bool, <P0_02<Output<MODE>> as OutputPin>::Error>
[src]

Is the output pin set as high?

pub fn is_set_low(
    &self
) -> Result<bool, <P0_02<Output<MODE>> as OutputPin>::Error>
[src]

Is the output pin set as low?

Auto Trait Implementations

impl<MODE> Send for P0_02<MODE> where
    MODE: Send

impl<MODE> Sync for P0_02<MODE> where
    MODE: Sync

impl<MODE> Unpin for P0_02<MODE> where
    MODE: Unpin

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<Src, Dst> LosslessTryInto<Dst> for Src where
    Dst: LosslessTryFrom<Src>, 
[src]

impl<Src, Dst> LossyInto<Dst> for Src where
    Dst: LossyFrom<Src>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.