esp32c6_lp/lp_io/
status_int.rs

1#[doc = "Register `STATUS_INT` reader"]
2pub type R = crate::R<STATUS_INT_SPEC>;
3#[doc = "Field `NEXT` reader - need des"]
4pub type NEXT_R = crate::FieldReader;
5impl R {
6    #[doc = "Bits 0:7 - need des"]
7    #[inline(always)]
8    pub fn next(&self) -> NEXT_R {
9        NEXT_R::new((self.bits & 0xff) as u8)
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_INT")
16            .field("next", &self.next())
17            .finish()
18    }
19}
20#[doc = "need des\n\nYou can [`read`](crate::Reg::read) this register and get [`status_int::R`](R). See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
21pub struct STATUS_INT_SPEC;
22impl crate::RegisterSpec for STATUS_INT_SPEC {
23    type Ux = u32;
24}
25#[doc = "`read()` method returns [`status_int::R`](R) reader structure"]
26impl crate::Readable for STATUS_INT_SPEC {}
27#[doc = "`reset()` method sets STATUS_INT to value 0"]
28impl crate::Resettable for STATUS_INT_SPEC {
29    const RESET_VALUE: u32 = 0;
30}