Lines Matching +full:8 +full:- +full:port
4 * Definitions for the FTDI USB Single Port Serial Converter -
14 * Bill Ryder - bryder@sgi.com of Silicon Graphics, Inc. is the original
20 #define FTDI_SIO_RESET 0 /* Reset the port */
25 * port */
38 /* Port Identifier Table */
46 #define UFTDI_JTAG_IFACES_MAX 8 /* Allow up to 8 jtag intfs */
57 * wIndex: Port
83 * wIndex: Port and BaudRate high bits
93 * wIndex: Port
115 #define FTDI_SIO_SET_DATA_PARITY_NONE (0x0 << 8)
116 #define FTDI_SIO_SET_DATA_PARITY_ODD (0x1 << 8)
117 #define FTDI_SIO_SET_DATA_PARITY_EVEN (0x2 << 8)
118 #define FTDI_SIO_SET_DATA_PARITY_MARK (0x3 << 8)
119 #define FTDI_SIO_SET_DATA_PARITY_SPACE (0x4 << 8)
129 * wIndex: Port
135 * Also - you can not set DTR and RTS with one control message
155 #define FTDI_SIO_SET_DTR_HIGH (1 | ( FTDI_SIO_SET_DTR_MASK << 8))
156 #define FTDI_SIO_SET_DTR_LOW (0 | ( FTDI_SIO_SET_DTR_MASK << 8))
158 #define FTDI_SIO_SET_RTS_HIGH (2 | ( FTDI_SIO_SET_RTS_MASK << 8))
159 #define FTDI_SIO_SET_RTS_LOW (0 | ( FTDI_SIO_SET_RTS_MASK << 8))
165 * wIndex: Protocol/Port - hIndex is protocol / lIndex is port
195 * wIndex: Port
208 * Set the special event character for the specified communications port.
210 * data read so far - rather than wait 40ms or until 62 bytes are read
218 * wIndex: Port
230 * port.
237 * wIndex: Port
278 * B0..3 Port
299 * length and port identifier of the message. For the FTDI USB Serial converter
300 * the port identifier is always 1.
302 * Byte 0: Port & length
305 * B0..1 Port
306 * B2..7 Length of message - (not including Byte 0)
313 #define FTDI_OUT_TAG(len, port) (((len) << 2) | (port)) argument