stm32l4x2_pac/
comp.rs

1#[doc = r" Register block"]
2#[repr(C)]
3pub struct RegisterBlock {
4    #[doc = "0x00 - Comparator 1 control and status register"]
5    pub comp1_csr: COMP1_CSR,
6    #[doc = "0x04 - Comparator 2 control and status register"]
7    pub comp2_csr: COMP2_CSR,
8}
9#[doc = "Comparator 1 control and status register"]
10pub struct COMP1_CSR {
11    register: ::vcell::VolatileCell<u32>,
12}
13#[doc = "Comparator 1 control and status register"]
14pub mod comp1_csr;
15#[doc = "Comparator 2 control and status register"]
16pub struct COMP2_CSR {
17    register: ::vcell::VolatileCell<u32>,
18}
19#[doc = "Comparator 2 control and status register"]
20pub mod comp2_csr;