rp2040_pac/rosc/
dormant.rs

1#[doc = "Register `DORMANT` reader"]
2pub type R = crate::R<DORMANT_SPEC>;
3#[doc = "Register `DORMANT` writer"]
4pub type W = crate::W<DORMANT_SPEC>;
5impl core::fmt::Debug for R {
6    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
7        write!(f, "{}", self.bits())
8    }
9}
10impl core::fmt::Debug for crate::generic::Reg<DORMANT_SPEC> {
11    fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
12        core::fmt::Debug::fmt(&self.read(), f)
13    }
14}
15impl W {
16    #[doc = r" Writes raw bits to the register."]
17    #[doc = r""]
18    #[doc = r" # Safety"]
19    #[doc = r""]
20    #[doc = r" Passing incorrect value can cause undefined behaviour. See reference manual"]
21    #[inline(always)]
22    pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
23        self.bits = bits;
24        self
25    }
26}
27#[doc = "Ring Oscillator pause control  
28 This is used to save power by pausing the ROSC  
29 On power-up this field is initialised to WAKE  
30 An invalid write will also select WAKE  
31 Warning: setup the irq before selecting dormant mode  
32
33You can [`read`](crate::generic::Reg::read) this register and get [`dormant::R`](R).  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`dormant::W`](W). You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
34pub struct DORMANT_SPEC;
35impl crate::RegisterSpec for DORMANT_SPEC {
36    type Ux = u32;
37}
38#[doc = "`read()` method returns [`dormant::R`](R) reader structure"]
39impl crate::Readable for DORMANT_SPEC {}
40#[doc = "`write(|w| ..)` method takes [`dormant::W`](W) writer structure"]
41impl crate::Writable for DORMANT_SPEC {
42    const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
43    const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
44}
45#[doc = "`reset()` method sets DORMANT to value 0"]
46impl crate::Resettable for DORMANT_SPEC {
47    const RESET_VALUE: u32 = 0;
48}