Home
last modified time | relevance | path

Searched refs:interCharTimeout (Results 1 – 2 of 2) sorted by relevance

/external/chromium-trace/catapult/third_party/pyserial/serial/
Dserialutil.py249 interCharTimeout=None # Inter-character timeout, None to disable argument
279 self.interCharTimeout = interCharTimeout
468 def setInterCharTimeout(self, interCharTimeout): argument
470 if interCharTimeout is not None:
471 if interCharTimeout < 0: raise ValueError("Not a valid timeout: %r" % interCharTimeout)
473 interCharTimeout + 1 # test if it's a number, will throw a TypeError if not...
475 raise ValueError("Not a valid timeout: %r" % interCharTimeout)
477 self._interCharTimeout = interCharTimeout
484interCharTimeout = property(getInterCharTimeout, setInterCharTimeout, doc="Inter-character timeout… variable in SerialBase
/external/autotest/client/cros/i2c/
Dusb_to_i2c.py118 interCharTimeout=1)