rp2040_pac/sio/
gpio_hi_in.rs

1#[doc = "Register `GPIO_HI_IN` reader"]
2pub type R = crate::R<GPIO_HI_IN_SPEC>;
3#[doc = "Field `GPIO_HI_IN` reader - Input value on QSPI IO in order 0..5: SCLK, SSn, SD0, SD1, SD2, SD3"]
4pub type GPIO_HI_IN_R = crate::FieldReader;
5impl R {
6    #[doc = "Bits 0:5 - Input value on QSPI IO in order 0..5: SCLK, SSn, SD0, SD1, SD2, SD3"]
7    #[inline(always)]
8    pub fn gpio_hi_in(&self) -> GPIO_HI_IN_R {
9        GPIO_HI_IN_R::new((self.bits & 0x3f) as u8)
10    }
11}
12#[doc = "Input value for QSPI pins  
13
14You can [`read`](crate::generic::Reg::read) this register and get [`gpio_hi_in::R`](R).  See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
15pub struct GPIO_HI_IN_SPEC;
16impl crate::RegisterSpec for GPIO_HI_IN_SPEC {
17    type Ux = u32;
18}
19#[doc = "`read()` method returns [`gpio_hi_in::R`](R) reader structure"]
20impl crate::Readable for GPIO_HI_IN_SPEC {}
21#[doc = "`reset()` method sets GPIO_HI_IN to value 0"]
22impl crate::Resettable for GPIO_HI_IN_SPEC {
23    const RESET_VALUE: u32 = 0;
24}