stm32l4x2_pac/
vrefbuf.rs

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