esp32c6/pmu/
lp_cpu_pwr1.rs

1#[doc = "Register `LP_CPU_PWR1` reader"]
2pub type R = crate::R<LP_CPU_PWR1_SPEC>;
3#[doc = "Register `LP_CPU_PWR1` writer"]
4pub type W = crate::W<LP_CPU_PWR1_SPEC>;
5#[doc = "Field `LP_CPU_WAKEUP_EN` reader - need_des"]
6pub type LP_CPU_WAKEUP_EN_R = crate::FieldReader<u16>;
7#[doc = "Field `LP_CPU_WAKEUP_EN` writer - need_des"]
8pub type LP_CPU_WAKEUP_EN_W<'a, REG> = crate::FieldWriter<'a, REG, 16, u16>;
9#[doc = "Field `LP_CPU_SLEEP_REQ` writer - need_des"]
10pub type LP_CPU_SLEEP_REQ_W<'a, REG> = crate::BitWriter<'a, REG>;
11impl R {
12    #[doc = "Bits 0:15 - need_des"]
13    #[inline(always)]
14    pub fn lp_cpu_wakeup_en(&self) -> LP_CPU_WAKEUP_EN_R {
15        LP_CPU_WAKEUP_EN_R::new((self.bits & 0xffff) as u16)
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("LP_CPU_PWR1")
22            .field("lp_cpu_wakeup_en", &self.lp_cpu_wakeup_en())
23            .finish()
24    }
25}
26impl W {
27    #[doc = "Bits 0:15 - need_des"]
28    #[inline(always)]
29    pub fn lp_cpu_wakeup_en(&mut self) -> LP_CPU_WAKEUP_EN_W<LP_CPU_PWR1_SPEC> {
30        LP_CPU_WAKEUP_EN_W::new(self, 0)
31    }
32    #[doc = "Bit 31 - need_des"]
33    #[inline(always)]
34    pub fn lp_cpu_sleep_req(&mut self) -> LP_CPU_SLEEP_REQ_W<LP_CPU_PWR1_SPEC> {
35        LP_CPU_SLEEP_REQ_W::new(self, 31)
36    }
37}
38#[doc = "need_des\n\nYou can [`read`](crate::Reg::read) this register and get [`lp_cpu_pwr1::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`lp_cpu_pwr1::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
39pub struct LP_CPU_PWR1_SPEC;
40impl crate::RegisterSpec for LP_CPU_PWR1_SPEC {
41    type Ux = u32;
42}
43#[doc = "`read()` method returns [`lp_cpu_pwr1::R`](R) reader structure"]
44impl crate::Readable for LP_CPU_PWR1_SPEC {}
45#[doc = "`write(|w| ..)` method takes [`lp_cpu_pwr1::W`](W) writer structure"]
46impl crate::Writable for LP_CPU_PWR1_SPEC {
47    type Safety = crate::Unsafe;
48}
49#[doc = "`reset()` method sets LP_CPU_PWR1 to value 0"]
50impl crate::Resettable for LP_CPU_PWR1_SPEC {}