stm32l4x2_pac/
lptim1.rs

1#[doc = r" Register block"]
2#[repr(C)]
3pub struct RegisterBlock {
4    #[doc = "0x00 - Interrupt and Status Register"]
5    pub isr: ISR,
6    #[doc = "0x04 - Interrupt Clear Register"]
7    pub icr: ICR,
8    #[doc = "0x08 - Interrupt Enable Register"]
9    pub ier: IER,
10    #[doc = "0x0c - Configuration Register"]
11    pub cfgr: CFGR,
12    #[doc = "0x10 - Control Register"]
13    pub cr: CR,
14    #[doc = "0x14 - Compare Register"]
15    pub cmp: CMP,
16    #[doc = "0x18 - Autoreload Register"]
17    pub arr: ARR,
18    #[doc = "0x1c - Counter Register"]
19    pub cnt: CNT,
20}
21#[doc = "Interrupt and Status Register"]
22pub struct ISR {
23    register: ::vcell::VolatileCell<u32>,
24}
25#[doc = "Interrupt and Status Register"]
26pub mod isr;
27#[doc = "Interrupt Clear Register"]
28pub struct ICR {
29    register: ::vcell::VolatileCell<u32>,
30}
31#[doc = "Interrupt Clear Register"]
32pub mod icr;
33#[doc = "Interrupt Enable Register"]
34pub struct IER {
35    register: ::vcell::VolatileCell<u32>,
36}
37#[doc = "Interrupt Enable Register"]
38pub mod ier;
39#[doc = "Configuration Register"]
40pub struct CFGR {
41    register: ::vcell::VolatileCell<u32>,
42}
43#[doc = "Configuration Register"]
44pub mod cfgr;
45#[doc = "Control Register"]
46pub struct CR {
47    register: ::vcell::VolatileCell<u32>,
48}
49#[doc = "Control Register"]
50pub mod cr;
51#[doc = "Compare Register"]
52pub struct CMP {
53    register: ::vcell::VolatileCell<u32>,
54}
55#[doc = "Compare Register"]
56pub mod cmp;
57#[doc = "Autoreload Register"]
58pub struct ARR {
59    register: ::vcell::VolatileCell<u32>,
60}
61#[doc = "Autoreload Register"]
62pub mod arr;
63#[doc = "Counter Register"]
64pub struct CNT {
65    register: ::vcell::VolatileCell<u32>,
66}
67#[doc = "Counter Register"]
68pub mod cnt;