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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#[repr(C)]
#[doc = "Register block"]
pub struct RegisterBlock {
    exisel: EXISEL,
    _reserved1: [u8; 0x0c],
    exicon: [EXICON; 4],
    exocon: [EXOCON; 4],
}
impl RegisterBlock {
    #[doc = "0x00 - Event Input Select"]
    #[inline(always)]
    pub const fn exisel(&self) -> &EXISEL {
        &self.exisel
    }
    #[doc = "0x10..0x20 - Event Input Control"]
    #[inline(always)]
    pub const fn exicon(&self, n: usize) -> &EXICON {
        &self.exicon[n]
    }
    #[doc = "Iterator for array of:"]
    #[doc = "0x10..0x20 - Event Input Control"]
    #[inline(always)]
    pub fn exicon_iter(&self) -> impl Iterator<Item = &EXICON> {
        self.exicon.iter()
    }
    #[doc = "0x20..0x30 - Event Output Trigger Control"]
    #[inline(always)]
    pub const fn exocon(&self, n: usize) -> &EXOCON {
        &self.exocon[n]
    }
    #[doc = "Iterator for array of:"]
    #[doc = "0x20..0x30 - Event Output Trigger Control"]
    #[inline(always)]
    pub fn exocon_iter(&self) -> impl Iterator<Item = &EXOCON> {
        self.exocon.iter()
    }
}
#[doc = "EXISEL (rw) register accessor: Event Input Select\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`exisel::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 [`exisel::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@exisel`]
module"]
pub type EXISEL = crate::Reg<exisel::EXISEL_SPEC>;
#[doc = "Event Input Select"]
pub mod exisel;
#[doc = "EXICON (rw) register accessor: Event Input Control\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`exicon::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 [`exicon::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@exicon`]
module"]
pub type EXICON = crate::Reg<exicon::EXICON_SPEC>;
#[doc = "Event Input Control"]
pub mod exicon;
#[doc = "EXOCON (rw) register accessor: Event Output Trigger Control\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`exocon::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 [`exocon::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@exocon`]
module"]
pub type EXOCON = crate::Reg<exocon::EXOCON_SPEC>;
#[doc = "Event Output Trigger Control"]
pub mod exocon;