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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#[doc = r" Register block"]
#[repr(C)]
pub struct RegisterBlock {
    #[doc = "0x00 - Status register"]
    pub sr: SR,
    #[doc = "0x04 - Data register"]
    pub dr: DR,
    #[doc = "0x08 - Baud rate register"]
    pub brr: BRR,
    #[doc = "0x0c - Control register 1"]
    pub cr1: CR1,
    #[doc = "0x10 - Control register 2"]
    pub cr2: CR2,
    #[doc = "0x14 - Control register 3"]
    pub cr3: CR3,
    #[doc = "0x18 - Guard time and prescaler register"]
    pub gtpr: GTPR,
}
#[doc = "Status register"]
pub struct SR {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Status register"]
pub mod sr;
#[doc = "Data register"]
pub struct DR {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Data register"]
pub mod dr;
#[doc = "Baud rate register"]
pub struct BRR {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Baud rate register"]
pub mod brr;
#[doc = "Control register 1"]
pub struct CR1 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Control register 1"]
pub mod cr1;
#[doc = "Control register 2"]
pub struct CR2 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Control register 2"]
pub mod cr2;
#[doc = "Control register 3"]
pub struct CR3 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Control register 3"]
pub mod cr3;
#[doc = "Guard time and prescaler register"]
pub struct GTPR {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Guard time and prescaler register"]
pub mod gtpr;