esp32s3/gpio/
status_next1.rs

1#[doc = "Register `STATUS_NEXT1` reader"]
2pub type R = crate::R<STATUS_NEXT1_SPEC>;
3#[doc = "Field `STATUS_INTERRUPT_NEXT1` reader - GPIO interrupt source register for GPIO32-53"]
4pub type STATUS_INTERRUPT_NEXT1_R = crate::FieldReader<u32>;
5impl R {
6    #[doc = "Bits 0:21 - GPIO interrupt source register for GPIO32-53"]
7    #[inline(always)]
8    pub fn status_interrupt_next1(&self) -> STATUS_INTERRUPT_NEXT1_R {
9        STATUS_INTERRUPT_NEXT1_R::new(self.bits & 0x003f_ffff)
10    }
11}
12#[cfg(feature = "impl-register-debug")]
13impl core::fmt::Debug for R {
14    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
15        f.debug_struct("STATUS_NEXT1")
16            .field("status_interrupt_next1", &self.status_interrupt_next1())
17            .finish()
18    }
19}
20#[doc = "GPIO interrupt source register for GPIO32-53\n\nYou can [`read`](crate::Reg::read) this register and get [`status_next1::R`](R). See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
21pub struct STATUS_NEXT1_SPEC;
22impl crate::RegisterSpec for STATUS_NEXT1_SPEC {
23    type Ux = u32;
24}
25#[doc = "`read()` method returns [`status_next1::R`](R) reader structure"]
26impl crate::Readable for STATUS_NEXT1_SPEC {}
27#[doc = "`reset()` method sets STATUS_NEXT1 to value 0"]
28impl crate::Resettable for STATUS_NEXT1_SPEC {
29    const RESET_VALUE: u32 = 0;
30}