SerialStopBits Enumeration

Number of stop bits appended to a serial character

Definition

Namespace: ASCOM.Utilities
Assembly: ASCOM.Utilities (in ASCOM.Utilities.dll) Version: 7.1.3+4851.c5da65c2b
C#
public enum SerialStopBits

Remarks

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.

Members

None0 No stop bits are used. This value is not supported. Setting the StopBits property to None raises an ArgumentOutOfRangeException.
One1 One stop bit is used.
Two2 Two stop bits are used.
OnePointFive3 1.5 stop bits are used.

See Also