[][src]Struct rpi_pico_sdk::sio_hw_t

#[repr(C)]pub struct sio_hw_t {
    pub cpuid: io_ro_32,
    pub gpio_in: io_ro_32,
    pub gpio_hi_in: io_ro_32,
    pub _pad: u32,
    pub gpio_out: io_wo_32,
    pub gpio_set: io_wo_32,
    pub gpio_clr: io_wo_32,
    pub gpio_togl: io_wo_32,
    pub gpio_oe: io_wo_32,
    pub gpio_oe_set: io_wo_32,
    pub gpio_oe_clr: io_wo_32,
    pub gpio_oe_togl: io_wo_32,
    pub gpio_hi_out: io_wo_32,
    pub gpio_hi_set: io_wo_32,
    pub gpio_hi_clr: io_wo_32,
    pub gpio_hi_togl: io_wo_32,
    pub gpio_hi_oe: io_wo_32,
    pub gpio_hi_oe_set: io_wo_32,
    pub gpio_hi_oe_clr: io_wo_32,
    pub gpio_hi_oe_togl: io_wo_32,
    pub fifo_st: io_rw_32,
    pub fifo_wr: io_wo_32,
    pub fifo_rd: io_ro_32,
    pub spinlock_st: io_ro_32,
    pub div_udividend: io_rw_32,
    pub div_udivisor: io_rw_32,
    pub div_sdividend: io_rw_32,
    pub div_sdivisor: io_rw_32,
    pub div_quotient: io_rw_32,
    pub div_remainder: io_rw_32,
    pub div_csr: io_rw_32,
    pub _pad2: u32,
    pub interp: [interp_hw_t; 2],
}

Fields

cpuid: io_ro_32gpio_in: io_ro_32gpio_hi_in: io_ro_32_pad: u32gpio_out: io_wo_32gpio_set: io_wo_32gpio_clr: io_wo_32gpio_togl: io_wo_32gpio_oe: io_wo_32gpio_oe_set: io_wo_32gpio_oe_clr: io_wo_32gpio_oe_togl: io_wo_32gpio_hi_out: io_wo_32gpio_hi_set: io_wo_32gpio_hi_clr: io_wo_32gpio_hi_togl: io_wo_32gpio_hi_oe: io_wo_32gpio_hi_oe_set: io_wo_32gpio_hi_oe_clr: io_wo_32gpio_hi_oe_togl: io_wo_32fifo_st: io_rw_32fifo_wr: io_wo_32fifo_rd: io_ro_32spinlock_st: io_ro_32div_udividend: io_rw_32div_udivisor: io_rw_32div_sdividend: io_rw_32div_sdivisor: io_rw_32div_quotient: io_rw_32div_remainder: io_rw_32div_csr: io_rw_32_pad2: u32interp: [interp_hw_t; 2]

Trait Implementations

impl Clone for sio_hw_t[src]

impl Copy for sio_hw_t[src]

impl Debug for sio_hw_t[src]

Auto Trait Implementations

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<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.