rp2040_pac/
xosc.rs

1#[doc = r"Register block"]
2#[repr(C)]
3pub struct RegisterBlock {
4    ctrl: CTRL,
5    status: STATUS,
6    dormant: DORMANT,
7    startup: STARTUP,
8}
9impl RegisterBlock {
10    #[doc = "0x00 - Crystal Oscillator Control"]
11    #[inline(always)]
12    pub const fn ctrl(&self) -> &CTRL {
13        &self.ctrl
14    }
15    #[doc = "0x04 - Crystal Oscillator Status"]
16    #[inline(always)]
17    pub const fn status(&self) -> &STATUS {
18        &self.status
19    }
20    #[doc = "0x08 - Crystal Oscillator pause control  
21 This is used to save power by pausing the XOSC  
22 On power-up this field is initialised to WAKE  
23 An invalid write will also select WAKE  
24 WARNING: stop the PLLs before selecting dormant mode  
25 WARNING: setup the irq before selecting dormant mode"]
26    #[inline(always)]
27    pub const fn dormant(&self) -> &DORMANT {
28        &self.dormant
29    }
30    #[doc = "0x0c - Controls the startup delay"]
31    #[inline(always)]
32    pub const fn startup(&self) -> &STARTUP {
33        &self.startup
34    }
35}
36#[doc = "CTRL (rw) register accessor: Crystal Oscillator Control  
37
38You can [`read`](crate::generic::Reg::read) this register and get [`ctrl::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 [`ctrl::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).  
39
40For information about available fields see [`mod@ctrl`]
41module"]
42pub type CTRL = crate::Reg<ctrl::CTRL_SPEC>;
43#[doc = "Crystal Oscillator Control"]
44pub mod ctrl;
45#[doc = "STATUS (rw) register accessor: Crystal Oscillator Status  
46
47You can [`read`](crate::generic::Reg::read) this register and get [`status::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 [`status::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).  
48
49For information about available fields see [`mod@status`]
50module"]
51pub type STATUS = crate::Reg<status::STATUS_SPEC>;
52#[doc = "Crystal Oscillator Status"]
53pub mod status;
54#[doc = "DORMANT (rw) register accessor: Crystal Oscillator pause control  
55 This is used to save power by pausing the XOSC  
56 On power-up this field is initialised to WAKE  
57 An invalid write will also select WAKE  
58 WARNING: stop the PLLs before selecting dormant mode  
59 WARNING: setup the irq before selecting dormant mode  
60
61You can [`read`](crate::generic::Reg::read) this register and get [`dormant::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`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).  
62
63For information about available fields see [`mod@dormant`]
64module"]
65pub type DORMANT = crate::Reg<dormant::DORMANT_SPEC>;
66#[doc = "Crystal Oscillator pause control  
67 This is used to save power by pausing the XOSC  
68 On power-up this field is initialised to WAKE  
69 An invalid write will also select WAKE  
70 WARNING: stop the PLLs before selecting dormant mode  
71 WARNING: setup the irq before selecting dormant mode"]
72pub mod dormant;
73#[doc = "STARTUP (rw) register accessor: Controls the startup delay  
74
75You can [`read`](crate::generic::Reg::read) this register and get [`startup::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 [`startup::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).  
76
77For information about available fields see [`mod@startup`]
78module"]
79pub type STARTUP = crate::Reg<startup::STARTUP_SPEC>;
80#[doc = "Controls the startup delay"]
81pub mod startup;