esp32c6_lp/lp_aon/
sys_cfg.rs

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