atsamd51p/
tc0.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
#[repr(C)]
#[doc = "Register block"]
pub struct RegisterBlock {
    _reserved_0_count8: [u8; 0x38],
}
impl RegisterBlock {
    #[doc = "0x00..0x38 - 32-bit Counter Mode"]
    #[inline(always)]
    pub const fn count32(&self) -> &Count32 {
        unsafe { &*(self as *const Self).cast::<u8>().add(0).cast() }
    }
    #[doc = "0x00..0x34 - 16-bit Counter Mode"]
    #[inline(always)]
    pub const fn count16(&self) -> &Count16 {
        unsafe { &*(self as *const Self).cast::<u8>().add(0).cast() }
    }
    #[doc = "0x00..0x32 - 8-bit Counter Mode"]
    #[inline(always)]
    pub const fn count8(&self) -> &Count8 {
        unsafe { &*(self as *const Self).cast::<u8>().add(0).cast() }
    }
}
#[doc = "8-bit Counter Mode"]
pub use self::count8::Count8;
#[doc = r"Cluster"]
#[doc = "8-bit Counter Mode"]
pub mod count8;
#[doc = "16-bit Counter Mode"]
pub use self::count16::Count16;
#[doc = r"Cluster"]
#[doc = "16-bit Counter Mode"]
pub mod count16;
#[doc = "32-bit Counter Mode"]
pub use self::count32::Count32;
#[doc = r"Cluster"]
#[doc = "32-bit Counter Mode"]
pub mod count32;