serial | index /usr/lib/python2.3/site-packages/serial/__init__.py |
#portable serial port access with python
#this is a wrapper module for different platform implementations
#
# (C)2001-2002 Chris Liechti <cliechti@gmx.net>
# this is distributed under a free software license, see license.txt
Package Contents | ||||||
|
Data | ||
EIGHTBITS = 8 FIVEBITS = 5 PARITY_EVEN = 'E' PARITY_NAMES = {'E': 'Even', 'N': 'None', 'O': 'Odd'} PARITY_NONE = 'N' PARITY_ODD = 'O' SEVENBITS = 7 SIXBITS = 6 STOPBITS_ONE = 1 STOPBITS_TWO = 2 TIOCINQ = 21531 TIOCMBIC = 21527 TIOCMBIS = 21526 TIOCMGET = 21525 TIOCMSET = 21528 TIOCM_CAR = 64 TIOCM_CD = 64 TIOCM_CTS = 32 TIOCM_DSR = 256 TIOCM_DTR = 2 TIOCM_DTR_str = '\x02\x00\x00\x00' TIOCM_RI = 128 TIOCM_RNG = 128 TIOCM_RTS = 4 TIOCM_RTS_str = '\x04\x00\x00\x00' TIOCM_zero_str = '\x00\x00\x00\x00' VERSION = '1.23' XOFF = '\x13' XON = '\x11' plat = 'linux2' portNotOpenError = <serial.serialutil.SerialException instance> writeTimeoutError = <serial.serialutil.SerialTimeoutException instance> |