SerialStopBits Enumeration
Number of stop bits appended to a serial character
Namespace: ASCOM.UtilitiesAssembly: ASCOM.Utilities (in ASCOM.Utilities.dll) Version: 7.1.3+4851.c5da65c2b
public enum SerialStopBits
Public Enumeration SerialStopBits
public enum class SerialStopBits
This enumeration specifies the number of stop bits to use. Stop bits separate each unit of data
on an asynchronous serial connection.
The None option is not supported. Setting the StopBits property to None raises an
ArgumentOutOfRangeException.
| None | 0 |
No stop bits are used. This value is not supported. Setting the StopBits property to None raises an ArgumentOutOfRangeException.
|
| One | 1 |
One stop bit is used.
|
| Two | 2 |
Two stop bits are used.
|
| OnePointFive | 3 |
1.5 stop bits are used.
|