Skip to content

Commit a9f2261

Browse files
authored
Add rtscts parameter to SerialValidator (#578)
1 parent 3e8ca1d commit a9f2261

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

pylabrobot/io/serial.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,7 @@ def __init__(
202202
stopbits: int = 1, # serial.STOPBITS_ONE,
203203
write_timeout=1,
204204
timeout=1,
205+
rtscts: bool = False,
205206
):
206207
super().__init__(
207208
port=port,
@@ -211,6 +212,7 @@ def __init__(
211212
stopbits=stopbits,
212213
write_timeout=write_timeout,
213214
timeout=timeout,
215+
rtscts=rtscts,
214216
)
215217
self.cr = cr
216218

0 commit comments

Comments
 (0)