esp32c6_lp/lp_uart/
sleep_conf1.rs1#[doc = "Register `SLEEP_CONF1` reader"]
2pub type R = crate::R<SLEEP_CONF1_SPEC>;
3#[doc = "Register `SLEEP_CONF1` writer"]
4pub type W = crate::W<SLEEP_CONF1_SPEC>;
5#[doc = "Field `WK_CHAR0` reader - This register restores the specified char0 to wake up"]
6pub type WK_CHAR0_R = crate::FieldReader;
7#[doc = "Field `WK_CHAR0` writer - This register restores the specified char0 to wake up"]
8pub type WK_CHAR0_W<'a, REG> = crate::FieldWriter<'a, REG, 8>;
9impl R {
10 #[doc = "Bits 0:7 - This register restores the specified char0 to wake up"]
11 #[inline(always)]
12 pub fn wk_char0(&self) -> WK_CHAR0_R {
13 WK_CHAR0_R::new((self.bits & 0xff) as u8)
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("SLEEP_CONF1")
20 .field("wk_char0", &self.wk_char0())
21 .finish()
22 }
23}
24impl W {
25 #[doc = "Bits 0:7 - This register restores the specified char0 to wake up"]
26 #[inline(always)]
27 #[must_use]
28 pub fn wk_char0(&mut self) -> WK_CHAR0_W<SLEEP_CONF1_SPEC> {
29 WK_CHAR0_W::new(self, 0)
30 }
31}
32#[doc = "UART sleep configure register 1\n\nYou can [`read`](crate::Reg::read) this register and get [`sleep_conf1::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`sleep_conf1::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
33pub struct SLEEP_CONF1_SPEC;
34impl crate::RegisterSpec for SLEEP_CONF1_SPEC {
35 type Ux = u32;
36}
37#[doc = "`read()` method returns [`sleep_conf1::R`](R) reader structure"]
38impl crate::Readable for SLEEP_CONF1_SPEC {}
39#[doc = "`write(|w| ..)` method takes [`sleep_conf1::W`](W) writer structure"]
40impl crate::Writable for SLEEP_CONF1_SPEC {
41 type Safety = crate::Unsafe;
42 const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
43 const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
44}
45#[doc = "`reset()` method sets SLEEP_CONF1 to value 0"]
46impl crate::Resettable for SLEEP_CONF1_SPEC {
47 const RESET_VALUE: u32 = 0;
48}