namespace PInvokeSerialPort
{
///
/// Uses for RTS or DTR pins
///
public enum HsOutput
{
///
/// Pin is asserted when this station is able to receive data.
///
Handshake = 2,
///
/// Pin is asserted when this station is transmitting data (RTS on NT, 2000 or XP only).
///
Gate = 3,
///
/// Pin is asserted when this station is online (port is open).
///
Online = 1,
///
/// Pin is never asserted.
///
None = 0
};
}