[][src]Struct nrf52840_hal::gpio::p0::P0_04

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

Methods

impl<MODE> P0_04<MODE>[src]

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

Convert the pin to be a floating input

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

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

pub fn into_push_pull_output(
    self,
    initial_output: Level
) -> P0_04<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_04<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 degrade(self) -> Pin<MODE>[src]

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

Trait Implementations

impl Channel<Saadc> for P0_04<Input<Floating>>[src]

type ID = u8

Channel ID type Read more

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

type Error = Void

Error type

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

type Error = Void

Error type

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

Set the output as high

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

Set the output as low

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

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

Is the output pin set as high?

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

Is the output pin set as low?

Auto Trait Implementations

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

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

impl<MODE> Unpin for P0_04<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> InputPin for T where
    T: InputPin
[src]

type Error = ()

Error type

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

impl<T> OutputPin for T where
    T: OutputPin
[src]

type Error = ()

Error type

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> StatefulOutputPin for T where
    T: StatefulOutputPin + OutputPin
[src]

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.