esp32c6_lp/lp_ana/
int_st.rs1#[doc = "Register `INT_ST` reader"]
2pub type R = crate::R<INT_ST_SPEC>;
3#[doc = "Field `BOD_MODE0` reader - need_des"]
4pub type BOD_MODE0_R = crate::BitReader;
5impl R {
6 #[doc = "Bit 31 - need_des"]
7 #[inline(always)]
8 pub fn bod_mode0(&self) -> BOD_MODE0_R {
9 BOD_MODE0_R::new(((self.bits >> 31) & 1) != 0)
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("INT_ST")
16 .field("bod_mode0", &self.bod_mode0())
17 .finish()
18 }
19}
20#[doc = "need_des\n\nYou can [`read`](crate::Reg::read) this register and get [`int_st::R`](R). See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
21pub struct INT_ST_SPEC;
22impl crate::RegisterSpec for INT_ST_SPEC {
23 type Ux = u32;
24}
25#[doc = "`read()` method returns [`int_st::R`](R) reader structure"]
26impl crate::Readable for INT_ST_SPEC {}
27#[doc = "`reset()` method sets INT_ST to value 0"]
28impl crate::Resettable for INT_ST_SPEC {
29 const RESET_VALUE: u32 = 0;
30}