nrf52840_pac/
comp.rs
1#[doc = r"Register block"]
2#[repr(C)]
3pub struct RegisterBlock {
4 #[doc = "0x00 - Start comparator"]
5 pub tasks_start: TASKS_START,
6 #[doc = "0x04 - Stop comparator"]
7 pub tasks_stop: TASKS_STOP,
8 #[doc = "0x08 - Sample comparator value"]
9 pub tasks_sample: TASKS_SAMPLE,
10 _reserved3: [u8; 0xf4],
11 #[doc = "0x100 - COMP is ready and output is valid"]
12 pub events_ready: EVENTS_READY,
13 #[doc = "0x104 - Downward crossing"]
14 pub events_down: EVENTS_DOWN,
15 #[doc = "0x108 - Upward crossing"]
16 pub events_up: EVENTS_UP,
17 #[doc = "0x10c - Downward or upward crossing"]
18 pub events_cross: EVENTS_CROSS,
19 _reserved7: [u8; 0xf0],
20 #[doc = "0x200 - Shortcut register"]
21 pub shorts: SHORTS,
22 _reserved8: [u8; 0xfc],
23 #[doc = "0x300 - Enable or disable interrupt"]
24 pub inten: INTEN,
25 #[doc = "0x304 - Enable interrupt"]
26 pub intenset: INTENSET,
27 #[doc = "0x308 - Disable interrupt"]
28 pub intenclr: INTENCLR,
29 _reserved11: [u8; 0xf4],
30 #[doc = "0x400 - Compare result"]
31 pub result: RESULT,
32 _reserved12: [u8; 0xfc],
33 #[doc = "0x500 - COMP enable"]
34 pub enable: ENABLE,
35 #[doc = "0x504 - Pin select"]
36 pub psel: PSEL,
37 #[doc = "0x508 - Reference source select for single-ended mode"]
38 pub refsel: REFSEL,
39 #[doc = "0x50c - External reference select"]
40 pub extrefsel: EXTREFSEL,
41 _reserved16: [u8; 0x20],
42 #[doc = "0x530 - Threshold configuration for hysteresis unit"]
43 pub th: TH,
44 #[doc = "0x534 - Mode configuration"]
45 pub mode: MODE,
46 #[doc = "0x538 - Comparator hysteresis enable"]
47 pub hyst: HYST,
48}
49#[doc = "TASKS_START (w) register accessor: an alias for `Reg<TASKS_START_SPEC>`"]
50pub type TASKS_START = crate::Reg<tasks_start::TASKS_START_SPEC>;
51#[doc = "Start comparator"]
52pub mod tasks_start;
53#[doc = "TASKS_STOP (w) register accessor: an alias for `Reg<TASKS_STOP_SPEC>`"]
54pub type TASKS_STOP = crate::Reg<tasks_stop::TASKS_STOP_SPEC>;
55#[doc = "Stop comparator"]
56pub mod tasks_stop;
57#[doc = "TASKS_SAMPLE (w) register accessor: an alias for `Reg<TASKS_SAMPLE_SPEC>`"]
58pub type TASKS_SAMPLE = crate::Reg<tasks_sample::TASKS_SAMPLE_SPEC>;
59#[doc = "Sample comparator value"]
60pub mod tasks_sample;
61#[doc = "EVENTS_READY (rw) register accessor: an alias for `Reg<EVENTS_READY_SPEC>`"]
62pub type EVENTS_READY = crate::Reg<events_ready::EVENTS_READY_SPEC>;
63#[doc = "COMP is ready and output is valid"]
64pub mod events_ready;
65#[doc = "EVENTS_DOWN (rw) register accessor: an alias for `Reg<EVENTS_DOWN_SPEC>`"]
66pub type EVENTS_DOWN = crate::Reg<events_down::EVENTS_DOWN_SPEC>;
67#[doc = "Downward crossing"]
68pub mod events_down;
69#[doc = "EVENTS_UP (rw) register accessor: an alias for `Reg<EVENTS_UP_SPEC>`"]
70pub type EVENTS_UP = crate::Reg<events_up::EVENTS_UP_SPEC>;
71#[doc = "Upward crossing"]
72pub mod events_up;
73#[doc = "EVENTS_CROSS (rw) register accessor: an alias for `Reg<EVENTS_CROSS_SPEC>`"]
74pub type EVENTS_CROSS = crate::Reg<events_cross::EVENTS_CROSS_SPEC>;
75#[doc = "Downward or upward crossing"]
76pub mod events_cross;
77#[doc = "SHORTS (rw) register accessor: an alias for `Reg<SHORTS_SPEC>`"]
78pub type SHORTS = crate::Reg<shorts::SHORTS_SPEC>;
79#[doc = "Shortcut register"]
80pub mod shorts;
81#[doc = "INTEN (rw) register accessor: an alias for `Reg<INTEN_SPEC>`"]
82pub type INTEN = crate::Reg<inten::INTEN_SPEC>;
83#[doc = "Enable or disable interrupt"]
84pub mod inten;
85#[doc = "INTENSET (rw) register accessor: an alias for `Reg<INTENSET_SPEC>`"]
86pub type INTENSET = crate::Reg<intenset::INTENSET_SPEC>;
87#[doc = "Enable interrupt"]
88pub mod intenset;
89#[doc = "INTENCLR (rw) register accessor: an alias for `Reg<INTENCLR_SPEC>`"]
90pub type INTENCLR = crate::Reg<intenclr::INTENCLR_SPEC>;
91#[doc = "Disable interrupt"]
92pub mod intenclr;
93#[doc = "RESULT (r) register accessor: an alias for `Reg<RESULT_SPEC>`"]
94pub type RESULT = crate::Reg<result::RESULT_SPEC>;
95#[doc = "Compare result"]
96pub mod result;
97#[doc = "ENABLE (rw) register accessor: an alias for `Reg<ENABLE_SPEC>`"]
98pub type ENABLE = crate::Reg<enable::ENABLE_SPEC>;
99#[doc = "COMP enable"]
100pub mod enable;
101#[doc = "PSEL (rw) register accessor: an alias for `Reg<PSEL_SPEC>`"]
102pub type PSEL = crate::Reg<psel::PSEL_SPEC>;
103#[doc = "Pin select"]
104pub mod psel;
105#[doc = "REFSEL (rw) register accessor: an alias for `Reg<REFSEL_SPEC>`"]
106pub type REFSEL = crate::Reg<refsel::REFSEL_SPEC>;
107#[doc = "Reference source select for single-ended mode"]
108pub mod refsel;
109#[doc = "EXTREFSEL (rw) register accessor: an alias for `Reg<EXTREFSEL_SPEC>`"]
110pub type EXTREFSEL = crate::Reg<extrefsel::EXTREFSEL_SPEC>;
111#[doc = "External reference select"]
112pub mod extrefsel;
113#[doc = "TH (rw) register accessor: an alias for `Reg<TH_SPEC>`"]
114pub type TH = crate::Reg<th::TH_SPEC>;
115#[doc = "Threshold configuration for hysteresis unit"]
116pub mod th;
117#[doc = "MODE (rw) register accessor: an alias for `Reg<MODE_SPEC>`"]
118pub type MODE = crate::Reg<mode::MODE_SPEC>;
119#[doc = "Mode configuration"]
120pub mod mode;
121#[doc = "HYST (rw) register accessor: an alias for `Reg<HYST_SPEC>`"]
122pub type HYST = crate::Reg<hyst::HYST_SPEC>;
123#[doc = "Comparator hysteresis enable"]
124pub mod hyst;