23 lines
567 B
C#
Executable File
23 lines
567 B
C#
Executable File
namespace PInvokeSerialPort
|
|
{
|
|
/// <summary>
|
|
/// Stop bit settings
|
|
/// </summary>
|
|
public enum StopBits
|
|
{
|
|
/// <summary>
|
|
/// Line is asserted for 1 bit duration at end of each character
|
|
/// </summary>
|
|
One = 0,
|
|
|
|
/// <summary>
|
|
/// Line is asserted for 1.5 bit duration at end of each character
|
|
/// </summary>
|
|
OnePointFive = 1,
|
|
|
|
/// <summary>
|
|
/// Line is asserted for 2 bit duration at end of each character
|
|
/// </summary>
|
|
Two = 2
|
|
}
|
|
} |