We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1e2924 commit 6a53980Copy full SHA for 6a53980
src/serial/config.rs
@@ -109,6 +109,11 @@ impl LowPowerConfig {
109
self
110
}
111
112
+ pub fn wordlength_7(mut self) -> Self {
113
+ self.wordlength = WordLength::DataBits7;
114
+ self
115
+ }
116
+
117
pub fn wordlength_8(mut self) -> Self {
118
self.wordlength = WordLength::DataBits8;
119
@@ -197,6 +202,11 @@ impl FullConfig {
197
202
198
203
199
204
205
206
207
208
209
200
210
201
211
212
0 commit comments