atsamd51p/
ccl.rs

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
53
54
55
56
#[repr(C)]
#[doc = "Register block"]
pub struct RegisterBlock {
    ctrl: Ctrl,
    _reserved1: [u8; 0x03],
    seqctrl: [Seqctrl; 2],
    _reserved2: [u8; 0x02],
    lutctrl: [Lutctrl; 4],
}
impl RegisterBlock {
    #[doc = "0x00 - Control"]
    #[inline(always)]
    pub const fn ctrl(&self) -> &Ctrl {
        &self.ctrl
    }
    #[doc = "0x04 - SEQ Control x"]
    #[inline(always)]
    pub const fn seqctrl(&self, n: usize) -> &Seqctrl {
        &self.seqctrl[n]
    }
    #[doc = "Iterator for array of:"]
    #[doc = "0x04 - SEQ Control x"]
    #[inline(always)]
    pub fn seqctrl_iter(&self) -> impl Iterator<Item = &Seqctrl> {
        self.seqctrl.iter()
    }
    #[doc = "0x08..0x18 - LUT Control x"]
    #[inline(always)]
    pub const fn lutctrl(&self, n: usize) -> &Lutctrl {
        &self.lutctrl[n]
    }
    #[doc = "Iterator for array of:"]
    #[doc = "0x08..0x18 - LUT Control x"]
    #[inline(always)]
    pub fn lutctrl_iter(&self) -> impl Iterator<Item = &Lutctrl> {
        self.lutctrl.iter()
    }
}
#[doc = "CTRL (rw) register accessor: Control\n\nYou can [`read`](crate::Reg::read) this register and get [`ctrl::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`ctrl::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ctrl`]
module"]
#[doc(alias = "CTRL")]
pub type Ctrl = crate::Reg<ctrl::CtrlSpec>;
#[doc = "Control"]
pub mod ctrl;
#[doc = "SEQCTRL (rw) register accessor: SEQ Control x\n\nYou can [`read`](crate::Reg::read) this register and get [`seqctrl::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`seqctrl::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@seqctrl`]
module"]
#[doc(alias = "SEQCTRL")]
pub type Seqctrl = crate::Reg<seqctrl::SeqctrlSpec>;
#[doc = "SEQ Control x"]
pub mod seqctrl;
#[doc = "LUTCTRL (rw) register accessor: LUT Control x\n\nYou can [`read`](crate::Reg::read) this register and get [`lutctrl::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`lutctrl::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@lutctrl`]
module"]
#[doc(alias = "LUTCTRL")]
pub type Lutctrl = crate::Reg<lutctrl::LutctrlSpec>;
#[doc = "LUT Control x"]
pub mod lutctrl;