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