atsamd51g/
hmatrix.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
#[repr(C)]
#[doc = "Register block"]
pub struct RegisterBlock {
    _reserved0: [u8; 0x80],
    prs: [Prs; 16],
}
impl RegisterBlock {
    #[doc = "0x80..0x100 - PRS\\[%s\\]"]
    #[inline(always)]
    pub const fn prs(&self, n: usize) -> &Prs {
        &self.prs[n]
    }
    #[doc = "Iterator for array of:"]
    #[doc = "0x80..0x100 - PRS\\[%s\\]"]
    #[inline(always)]
    pub fn prs_iter(&self) -> impl Iterator<Item = &Prs> {
        self.prs.iter()
    }
}
#[doc = "PRS\\[%s\\]"]
pub use self::prs::Prs;
#[doc = r"Cluster"]
#[doc = "PRS\\[%s\\]"]
pub mod prs;