SerialHandshake Enumeration |
The control protocol used by the serial port
Namespace:
ASCOM.Utilities
Assembly:
ASCOM.Utilities (in ASCOM.Utilities.dll) Version: 3351c4f3fa64146a7efd5b51ed4591e32a0a5484
Syntaxpublic enum SerialHandshake
Public Enumeration SerialHandshake
public enum class SerialHandshake
Members
| Member name | Value | Description |
---|
| None | 0 |
No control is used for the handshake.
|
| RequestToSend | 2 |
Request-to-Send (RTS) hardware flow control is used. RTS signals that data is available
for transmission. If the input buffer becomes full, the RTS line will be set to false.
The RTS line will be set to true when more room becomes available in the input buffer.
|
| RequestToSendXonXoff | 3 |
Both the Request-to-Send (RTS) hardware control and the XON/XOFF software controls are used.
|
| XonXoff | 1 |
The XON/XOFF software control protocol is used. The XOFF control is sent to stop
the transmission of data. The XON control is sent to resume the transmission.
These software controls are used instead of Request to Send (RTS) and Clear to Send (CTS)
hardware controls.
|
Remarks
See Also