本文整理汇总了Python中termios.tcdrain方法的典型用法代码示例。如果您正苦于以下问题:Python termios.tcdrain方法的具体用法?Python termios.tcdrain怎么用?Python termios.tcdrain使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类termios
的用法示例。
在下文中一共展示了termios.tcdrain方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: flush
# 需要导入模块: import termios [as 别名]
# 或者: from termios import tcdrain [as 别名]
def flush(self):
"""Flush the write buffer of the serial port, blocking until all bytes
are written.
Raises:
SerialError: if an I/O or OS error occurs.
"""
try:
termios.tcdrain(self._fd)
except termios.error as e:
raise SerialError(e.errno, "Flushing serial port: " + e.strerror)
示例2: flush
# 需要导入模块: import termios [as 别名]
# 或者: from termios import tcdrain [as 别名]
def flush(self):
"""\
Flush of file like objects. In this case, wait until all data
is written.
"""
if not self.is_open:
raise portNotOpenError
termios.tcdrain(self.fd)
示例3: drainOutput
# 需要导入模块: import termios [as 别名]
# 或者: from termios import tcdrain [as 别名]
def drainOutput(self):
"""internal - not portable!"""
if not self._isOpen: raise portNotOpenError
termios.tcdrain(self.fd)
示例4: _restore
# 需要导入模块: import termios [as 别名]
# 或者: from termios import tcdrain [as 别名]
def _restore(cls, what: Optional[TcAttrsType] = None) -> None:
if sys.stdout.isatty():
# termios.tcdrain(sys.stdout.fileno())
# if sys.stderr.isatty():
# termios.tcdrain(sys.stderr.fileno())
# if sys.stdin.isatty():
# termios.tcflush(sys.stdin.fileno(), termios.TCIOFLUSH)
if what:
termios.tcsetattr(sys.stdin.fileno(), termios.TCSANOW, what)