Searched refs:stopbits (Results 1 – 7 of 7) sorted by relevance
/external/chromium-trace/catapult/third_party/pyserial/serial/ |
D | serialutil.py | 243 stopbits=STOPBITS_ONE, # number of stop bits argument 273 self.stopbits = stopbits 380 def setStopbits(self, stopbits): argument 382 … if stopbits not in self.STOPBITS: raise ValueError("Not a valid stop bit size: %r" % (stopbits,)) 383 self._stopbits = stopbits 390 stopbits = property(getStopbits, setStopbits, doc="Stop bits setting") variable in SerialBase 516 self.stopbits,
|
D | sermsdos.py | 86 stopbits = STOPBITS_ONE, argument 114 self.stop = str(stopbits)
|
D | rfc2217.py | 1163 backup = self.serial.stopbits 1165 stopbits = struct.unpack("!B", suboption[2:3])[0] 1166 if stopbits != 0: 1167 self.serial.stopbits = RFC2217_REVERSE_STOPBIT_MAP[stopbits] 1171 self.serial.stopbits = backup 1174 … self.logger.info("%s stop bits: %s" % (stopbits and 'set' or 'get', self.serial.stopbits)) 1177 struct.pack("!B", RFC2217_STOPBIT_MAP[self.serial.stopbits])
|
D | serialjava.py | 96 elif stopbits == STOPBITS_ONE_POINT_FIVE: 248 stopbits=STOPBITS_ONE, # number of stopbits
|
D | serialposix.py | 690 stopbits=STOPBITS_ONE, # number of stop bits
|
/external/chromium-trace/catapult/third_party/pyserial/serial/tools/ |
D | miniterm.py | 220 self.serial.stopbits)) 429 self.serial.stopbits = serial.STOPBITS_ONE 432 self.serial.stopbits = serial.STOPBITS_TWO 435 self.serial.stopbits = serial.STOPBITS_ONE_POINT_FIVE 661 miniterm.serial.stopbits,
|
/external/autotest/client/cros/i2c/ |
D | usb_to_i2c.py | 115 stopbits=serial.STOPBITS_ONE,
|