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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
use crate::pac::usart1::cr2::STOP_A;
use crate::time::rate::{Baud, Extensions};
#[derive(Clone, Copy, Debug, PartialEq)]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
pub enum StopBits {
Stop0P5,
Stop1,
Stop1P5,
Stop2,
}
impl From<StopBits> for STOP_A {
fn from(stopbit: StopBits) -> Self {
match stopbit {
StopBits::Stop0P5 => STOP_A::STOP0P5,
StopBits::Stop1 => STOP_A::STOP1,
StopBits::Stop1P5 => STOP_A::STOP1P5,
StopBits::Stop2 => STOP_A::STOP2,
}
}
}
impl From<STOP_A> for StopBits {
fn from(stopbit: STOP_A) -> Self {
match stopbit {
STOP_A::STOP0P5 => StopBits::Stop0P5,
STOP_A::STOP1 => StopBits::Stop1,
STOP_A::STOP1P5 => StopBits::Stop1P5,
STOP_A::STOP2 => StopBits::Stop2,
}
}
}
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Debug, Clone, Copy, PartialEq)]
pub enum Parity {
None,
Even,
Odd,
}
#[derive(Debug, Clone, Copy, PartialEq)]
#[non_exhaustive]
pub struct Config {
pub baudrate: Baud,
pub parity: Parity,
pub stopbits: StopBits,
}
impl Config {
pub fn baudrate(mut self, baudrate: impl Into<Baud>) -> Self {
self.baudrate = baudrate.into();
self
}
pub fn parity(mut self, parity: Parity) -> Self {
self.parity = parity;
self
}
pub fn stopbits(mut self, stopbits: StopBits) -> Self {
self.stopbits = stopbits;
self
}
}
impl Default for Config {
fn default() -> Config {
Config {
baudrate: 115_200.Bd(),
parity: Parity::None,
stopbits: StopBits::Stop1,
}
}
}
impl<T: Into<Baud>> From<T> for Config {
fn from(b: T) -> Config {
Config {
baudrate: b.into(),
..Default::default()
}
}
}
#[cfg(feature = "defmt")]
impl defmt::Format for Config {
fn format(&self, f: defmt::Formatter) {
defmt::write!(
f,
"Serial {{ baudrate: {} Bd , parity: {} , stopbits: {} }}",
self.baudrate.0,
self.parity,
self.stopbits,
);
}
}