esp32s3/sensitive/
core_1_toomanyexceptions_m_override_1.rs1#[doc = "Register `CORE_1_TOOMANYEXCEPTIONS_M_OVERRIDE_1` reader"]
2pub type R = crate::R<CORE_1_TOOMANYEXCEPTIONS_M_OVERRIDE_1_SPEC>;
3#[doc = "Register `CORE_1_TOOMANYEXCEPTIONS_M_OVERRIDE_1` writer"]
4pub type W = crate::W<CORE_1_TOOMANYEXCEPTIONS_M_OVERRIDE_1_SPEC>;
5#[doc = "Field `CORE_1_TOOMANYEXCEPTIONS_M_OVERRIDE` reader - Set 1 to mask toomanyexception."]
6pub type CORE_1_TOOMANYEXCEPTIONS_M_OVERRIDE_R = crate::BitReader;
7#[doc = "Field `CORE_1_TOOMANYEXCEPTIONS_M_OVERRIDE` writer - Set 1 to mask toomanyexception."]
8pub type CORE_1_TOOMANYEXCEPTIONS_M_OVERRIDE_W<'a, REG> = crate::BitWriter<'a, REG>;
9impl R {
10 #[doc = "Bit 0 - Set 1 to mask toomanyexception."]
11 #[inline(always)]
12 pub fn core_1_toomanyexceptions_m_override(&self) -> CORE_1_TOOMANYEXCEPTIONS_M_OVERRIDE_R {
13 CORE_1_TOOMANYEXCEPTIONS_M_OVERRIDE_R::new((self.bits & 1) != 0)
14 }
15}
16#[cfg(feature = "impl-register-debug")]
17impl core::fmt::Debug for R {
18 fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
19 f.debug_struct("CORE_1_TOOMANYEXCEPTIONS_M_OVERRIDE_1")
20 .field(
21 "core_1_toomanyexceptions_m_override",
22 &self.core_1_toomanyexceptions_m_override(),
23 )
24 .finish()
25 }
26}
27impl W {
28 #[doc = "Bit 0 - Set 1 to mask toomanyexception."]
29 #[inline(always)]
30 pub fn core_1_toomanyexceptions_m_override(
31 &mut self,
32 ) -> CORE_1_TOOMANYEXCEPTIONS_M_OVERRIDE_W<CORE_1_TOOMANYEXCEPTIONS_M_OVERRIDE_1_SPEC> {
33 CORE_1_TOOMANYEXCEPTIONS_M_OVERRIDE_W::new(self, 0)
34 }
35}
36#[doc = "core1 toomanyexception override configuration register 1.\n\nYou can [`read`](crate::Reg::read) this register and get [`core_1_toomanyexceptions_m_override_1::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`core_1_toomanyexceptions_m_override_1::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
37pub struct CORE_1_TOOMANYEXCEPTIONS_M_OVERRIDE_1_SPEC;
38impl crate::RegisterSpec for CORE_1_TOOMANYEXCEPTIONS_M_OVERRIDE_1_SPEC {
39 type Ux = u32;
40}
41#[doc = "`read()` method returns [`core_1_toomanyexceptions_m_override_1::R`](R) reader structure"]
42impl crate::Readable for CORE_1_TOOMANYEXCEPTIONS_M_OVERRIDE_1_SPEC {}
43#[doc = "`write(|w| ..)` method takes [`core_1_toomanyexceptions_m_override_1::W`](W) writer structure"]
44impl crate::Writable for CORE_1_TOOMANYEXCEPTIONS_M_OVERRIDE_1_SPEC {
45 type Safety = crate::Unsafe;
46}
47#[doc = "`reset()` method sets CORE_1_TOOMANYEXCEPTIONS_M_OVERRIDE_1 to value 0x01"]
48impl crate::Resettable for CORE_1_TOOMANYEXCEPTIONS_M_OVERRIDE_1_SPEC {
49 const RESET_VALUE: u32 = 0x01;
50}