HomeSort by relevance Sort by last modified time
    Searched refs:stopbits (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/tools/telemetry/third_party/pyserial/serial/
serialutil.py 232 STOPBITS = (STOPBITS_ONE, STOPBITS_ONE_POINT_FIVE, STOPBITS_TWO)
243 stopbits=STOPBITS_ONE, # number of stop bits
273 self.stopbits = stopbits
300 return [(str(b), b) for b in self.STOPBITS]
380 def setStopbits(self, stopbits):
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 class:SerialBase
    [all...]
sermsdos.py 75 stopbits: number of stopbits
86 stopbits = STOPBITS_ONE,
114 self.stop = str(stopbits)
rfc2217.py     [all...]
serialjava.py 96 elif stopbits == STOPBITS_ONE_POINT_FIVE:
101 raise ValueError("unsupported number of stopbits: %r" % self._stopbits)
248 stopbits=STOPBITS_ONE, # number of stopbits variable in class:.Serial
serialposix.py 371 # setup stopbits
690 stopbits=STOPBITS_ONE, # number of stop bits
  /external/chromium_org/tools/telemetry/third_party/pyserial/serial/tools/
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,

Completed in 128 milliseconds