2022-09-26 21:00:43 +02:00
|
|
|
namespace Nefarius.Peripherals.SerialPort;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Uses for RTS or DTR pins
|
|
|
|
|
/// </summary>
|
|
|
|
|
public enum HsOutput
|
2012-03-03 13:20:54 +03:30
|
|
|
{
|
|
|
|
|
/// <summary>
|
2022-09-26 21:00:43 +02:00
|
|
|
/// Pin is asserted when this station is able to receive data.
|
2012-03-03 13:20:54 +03:30
|
|
|
/// </summary>
|
2022-09-26 21:00:43 +02:00
|
|
|
Handshake = 2,
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Pin is asserted when this station is transmitting data (RTS on NT, 2000 or XP only).
|
|
|
|
|
/// </summary>
|
|
|
|
|
Gate = 3,
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Pin is asserted when this station is online (port is open).
|
|
|
|
|
/// </summary>
|
|
|
|
|
Online = 1,
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Pin is never asserted.
|
|
|
|
|
/// </summary>
|
|
|
|
|
None = 0
|
2012-03-03 13:20:54 +03:30
|
|
|
}
|