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)]
12pub const fn ctrl(&self) -> &CTRL {
13&self.ctrl
14 }
15#[doc = "0x04 - Crystal Oscillator Status"]
16 #[inline(always)]
17pub 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)]
27pub const fn dormant(&self) -> &DORMANT {
28&self.dormant
29 }
30#[doc = "0x0c - Controls the startup delay"]
31 #[inline(always)]
32pub const fn startup(&self) -> &STARTUP {
33&self.startup
34 }
35}
36#[doc = "CTRL (rw) register accessor: Crystal Oscillator Control
3738You 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).
3940For 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
4647You 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).
4849For 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
6061You 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).
6263For 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
7475You 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).
7677For 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;