Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

RtsControl (Enums)
 
.
Summary
TODO - a short description

C# Definition:

public enum RtsControl : int
{
    /// <summary>
    /// Disables the RTS line when the device is opened and leaves it disabled.
    /// </summary>
    Disable = 0,

    /// <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.

Documentation
 

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!

 
Access PInvoke.net directly from VS:
Terms of Use
Edit This Page
Find References
Show Printable Version
Revisions