1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#[doc = r" Register block"]
#[repr(C)]
pub struct RegisterBlock {
    #[doc = "0x00 - Event Input Select"]
    pub exisel: EXISEL,
    _reserved0: [u8; 12usize],
    #[doc = "0x10 - Event Input Control"]
    pub exicon: [EXICON; 4],
    #[doc = "0x20 - Event Output Trigger Control"]
    pub exocon: [EXOCON; 4],
}
#[doc = "Event Input Select"]
pub struct EXISEL {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Event Input Select"]
pub mod exisel;
#[doc = "Event Input Control"]
pub struct EXICON {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Event Input Control"]
pub mod exicon;
#[doc = "Event Output Trigger Control"]
pub struct EXOCON {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Event Output Trigger Control"]
pub mod exocon;