File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -248,6 +248,11 @@ class BufferedSerial:
248
248
249
249
// Expose private SerialBase::Parity as BufferedSerial::Parity
250
250
using SerialBase::Parity;
251
+ using SerialBase::None;
252
+ using SerialBase::Odd;
253
+ using SerialBase::Even;
254
+ using SerialBase::Forced1;
255
+ using SerialBase::Forced0;
251
256
252
257
/* * Set the transmission format used by the serial port
253
258
*
@@ -264,6 +269,10 @@ class BufferedSerial:
264
269
// For now use the base enum - but in future we may have extra options
265
270
// such as XON/XOFF or manual GPIO RTSCTS.
266
271
using SerialBase::Flow;
272
+ using SerialBase::Disabled;
273
+ using SerialBase::RTS;
274
+ using SerialBase::CTS;
275
+ using SerialBase::RTSCTS;
267
276
268
277
/* * Set the flow control type on the serial port
269
278
*
You can’t perform that action at this time.
0 commit comments