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

  /hardware/bsp/intel/peripheral/libmraa/api/mraa/
uart.h 94 * @param stopbits stop bits
97 mraa_result_t mraa_uart_set_mode(mraa_uart_context dev, int bytesize, mraa_uart_parity_t parity, int stopbits);
uart.hpp 202 * @param stopbits stop bits
206 setMode(int bytesize, UartParity parity, int stopbits)
208 return (Result) mraa_uart_set_mode(m_uart, bytesize, (mraa_uart_parity_t) parity, stopbits);
  /external/chromium-trace/catapult/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/autotest/client/cros/i2c/
usb_to_i2c.py 115 stopbits=serial.STOPBITS_ONE,
  /hardware/bsp/intel/peripheral/libmraa/src/uart/
uart.c 309 mraa_uart_set_mode(mraa_uart_context dev, int bytesize, mraa_uart_parity_t parity, int stopbits)
342 switch (stopbits) {
  /external/chromium-trace/catapult/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 178 milliseconds