1#[doc = r"Register block"]
2#[repr(C)]
3pub struct RegisterBlock {
4 #[doc = "0x00 - Start temperature measurement."]
5 pub tasks_start: TASKS_START,
6 #[doc = "0x04 - Stop temperature measurement."]
7 pub tasks_stop: TASKS_STOP,
8 _reserved2: [u8; 0xf8],
9 #[doc = "0x100 - Temperature measurement complete, data ready event."]
10 pub events_datardy: EVENTS_DATARDY,
11 _reserved3: [u8; 0x0200],
12 #[doc = "0x304 - Interrupt enable set register."]
13 pub intenset: INTENSET,
14 #[doc = "0x308 - Interrupt enable clear register."]
15 pub intenclr: INTENCLR,
16 _reserved5: [u8; 0x01fc],
17 #[doc = "0x508 - Die temperature in degC, 2's complement format, 0.25 degC pecision."]
18 pub temp: TEMP,
19 _reserved6: [u8; 0x0af0],
20 #[doc = "0xffc - Peripheral power control."]
21 pub power: POWER,
22}
23#[doc = "TASKS_START (w) register accessor: an alias for `Reg<TASKS_START_SPEC>`"]
24pub type TASKS_START = crate::Reg<tasks_start::TASKS_START_SPEC>;
25#[doc = "Start temperature measurement."]
26pub mod tasks_start;
27#[doc = "TASKS_STOP (w) register accessor: an alias for `Reg<TASKS_STOP_SPEC>`"]
28pub type TASKS_STOP = crate::Reg<tasks_stop::TASKS_STOP_SPEC>;
29#[doc = "Stop temperature measurement."]
30pub mod tasks_stop;
31#[doc = "EVENTS_DATARDY (rw) register accessor: an alias for `Reg<EVENTS_DATARDY_SPEC>`"]
32pub type EVENTS_DATARDY = crate::Reg<events_datardy::EVENTS_DATARDY_SPEC>;
33#[doc = "Temperature measurement complete, data ready event."]
34pub mod events_datardy;
35#[doc = "INTENSET (rw) register accessor: an alias for `Reg<INTENSET_SPEC>`"]
36pub type INTENSET = crate::Reg<intenset::INTENSET_SPEC>;
37#[doc = "Interrupt enable set register."]
38pub mod intenset;
39#[doc = "INTENCLR (rw) register accessor: an alias for `Reg<INTENCLR_SPEC>`"]
40pub type INTENCLR = crate::Reg<intenclr::INTENCLR_SPEC>;
41#[doc = "Interrupt enable clear register."]
42pub mod intenclr;
43#[doc = "TEMP (r) register accessor: an alias for `Reg<TEMP_SPEC>`"]
44pub type TEMP = crate::Reg<temp::TEMP_SPEC>;
45#[doc = "Die temperature in degC, 2's complement format, 0.25 degC pecision."]
46pub mod temp;
47#[doc = "POWER (rw) register accessor: an alias for `Reg<POWER_SPEC>`"]
48pub type POWER = crate::Reg<power::POWER_SPEC>;
49#[doc = "Peripheral power control."]
50pub mod power;