Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than Enums, prefix the name with the module name and a period.
RtsControl (Enums)
.
C# Definition:
public enum RtsControl : int
{
/// <summary>
/// Disables the RTS line when the device is opened and leaves it disabled.
/// </summary>
/// <summary>
/// Enables the RTS line when the device is opened and leaves it on.
/// </summary>
Enable = 1,
/// <summary>
/// Enables RTS handshaking. The driver raises the RTS line when the "type-ahead" (input) buffer
/// is less than one-half full and lowers the RTS line when the buffer is more than
/// three-quarters full. If handshaking is enabled, it is an error for the application to
/// adjust the line by using the EscapeCommFunction function.
/// </summary>
Handshake = 2,
/// <summary>
/// Specifies that the RTS line will be high if bytes are available for transmission. After
/// all buffered bytes have been sent, the RTS line will be low.
/// </summary>
Toggle = 3
}
VB Definition:
Public Enum RtsControl As Integer
Disable = 0
Enable = 1
Handshake = 2
Toggle = 3
End Enum ' RtsControl
Notes:
None.
};
VB Definition:
Public Enum RtsControl As Integer
Disable = 0
Enable = 1
Handshake = 2
Toggle = 3
End Enum ' RtsControl
Notes:
None.
TODO - a short description
12/14/2011 7:37:11 AM - -84.73.85.109
Please edit this page!
Do you have...
helpful tips?
corrections to the existing content?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it!