[][src]Struct tm4c129x_hal::gpio::gpioc::PCx

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

Partially erased pin

Implementations

impl<MODE> PCx<Input<MODE>> where
    MODE: InputMode
[src]

pub fn set_interrupt_mode(&mut self, mode: InterruptMode)[src]

Enables or disables interrupts on this GPIO pin.

pub fn get_interrupt_status(&self) -> bool[src]

Returns the current interrupt status for this pin.

pub fn clear_interrupt(&self)[src]

Marks the interrupt for this pin as handled. You should call this (or perform its functionality) from the ISR.

Trait Implementations

impl<MODE> InputPin for PCx<Input<MODE>> where
    MODE: InputMode
[src]

impl<MODE> OutputPin for PCx<Output<MODE>> where
    MODE: OutputMode
[src]

impl<MODE> StatefulOutputPin for PCx<Output<MODE>> where
    MODE: OutputMode
[src]

Auto Trait Implementations

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

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

impl<MODE> Unpin for PCx<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.