[][src]Struct ruspiro_gpio::Gpio

pub struct Gpio { /* fields omitted */ }

GPIO peripheral representation

Methods

impl Gpio[src]

pub const fn new() -> Self[src]

Get a new intance of the GPIO peripheral and do some initialization to ensure a valid state of all pins uppon initialization

pub fn get_pin(
    &mut self,
    num: u32
) -> Result<Pin<Unknown, Unknown>, &'static str>
[src]

Get a new pin for further usage, the function of the pin is initially undefined/unknown Returns an Err(str) if the pin is already in use, otherwise an Ok(Pin)

pub fn free_pin(&mut self, num: u32)[src]

Auto Trait Implementations

impl Unpin for Gpio

impl Sync for Gpio

impl Send for Gpio

Blanket Implementations

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> Into<U> for T where
    U: From<T>, 
[src]

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

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.

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

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

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