nrf52840_pac/
egu0.rs
1#[doc = r"Register block"]
2#[repr(C)]
3pub struct RegisterBlock {
4 #[doc = "0x00..0x40 - Description collection\\[n\\]: Trigger n for triggering the corresponding TRIGGERED\\[n\\]
5event"]
6 pub tasks_trigger: [TASKS_TRIGGER; 16],
7 _reserved1: [u8; 0xc0],
8 #[doc = "0x100..0x140 - Description collection\\[n\\]: Event number n generated by triggering the corresponding TRIGGER\\[n\\]
9task"]
10 pub events_triggered: [EVENTS_TRIGGERED; 16],
11 _reserved2: [u8; 0x01c0],
12 #[doc = "0x300 - Enable or disable interrupt"]
13 pub inten: INTEN,
14 #[doc = "0x304 - Enable interrupt"]
15 pub intenset: INTENSET,
16 #[doc = "0x308 - Disable interrupt"]
17 pub intenclr: INTENCLR,
18}
19#[doc = "TASKS_TRIGGER (w) register accessor: an alias for `Reg<TASKS_TRIGGER_SPEC>`"]
20pub type TASKS_TRIGGER = crate::Reg<tasks_trigger::TASKS_TRIGGER_SPEC>;
21#[doc = "Description collection\\[n\\]: Trigger n for triggering the corresponding TRIGGERED\\[n\\]
22event"]
23pub mod tasks_trigger;
24#[doc = "EVENTS_TRIGGERED (rw) register accessor: an alias for `Reg<EVENTS_TRIGGERED_SPEC>`"]
25pub type EVENTS_TRIGGERED = crate::Reg<events_triggered::EVENTS_TRIGGERED_SPEC>;
26#[doc = "Description collection\\[n\\]: Event number n generated by triggering the corresponding TRIGGER\\[n\\]
27task"]
28pub mod events_triggered;
29#[doc = "INTEN (rw) register accessor: an alias for `Reg<INTEN_SPEC>`"]
30pub type INTEN = crate::Reg<inten::INTEN_SPEC>;
31#[doc = "Enable or disable interrupt"]
32pub mod inten;
33#[doc = "INTENSET (rw) register accessor: an alias for `Reg<INTENSET_SPEC>`"]
34pub type INTENSET = crate::Reg<intenset::INTENSET_SPEC>;
35#[doc = "Enable interrupt"]
36pub mod intenset;
37#[doc = "INTENCLR (rw) register accessor: an alias for `Reg<INTENCLR_SPEC>`"]
38pub type INTENCLR = crate::Reg<intenclr::INTENCLR_SPEC>;
39#[doc = "Disable interrupt"]
40pub mod intenclr;