namespace PInvokeSerialPort
{
///
/// Stop bit settings
///
public enum StopBits
{
///
/// Line is asserted for 1 bit duration at end of each character
///
one = 0,
///
/// Line is asserted for 1.5 bit duration at end of each character
///
onePointFive = 1,
///
/// Line is asserted for 2 bit duration at end of each character
///
two = 2
};
}