The OnHandFlow event occurs when other application changes flow control parameters of the sniffed serial port.
OnHandFlow( | ||
LONG ControlHandShake, | // Handshake control parameter | |
LONG FlowReplace, | // Flow control parameter | |
LONG XOnLimit, | // Flow control parameter | |
LONG XOffLimit | // Flow control parameter | |
); |
Parameters
ControlHandShake [In] ControlHandShake is a set of flags that defines the modem lines that are used for flow control. Can be combination of the following flags:
Value | Meaning | Hex |
SERIAL_DTR_CONTROL | Enables the DTR line when the device is open and leaves it on. | 0x01 |
SERIAL_DTR_HANDSHAKE | Use the modem signal DTR for input flow control. For the real serial port the DTR line is cleared by the controller if the received buffer reaches the programmed high water mark. See also description of XonLimit and XoffLimit. | 0x02 |
SERIAL_CTS_HANDSHAKE | Use the modem signal CTS, DCD or DSR respectively for output flow control. For the real serial port if the corresponding modem line(s) found as cleared, the controller will hold data transmission. | 0x08 |
SERIAL_DCD_HANDSHAKE | 0x20 | |
SERIAL_DSR_HANDSHAKE | 0x10 | |
SERIAL_DSR_SENSITIVITY | Ignore any character arriving when the DSR line is not set. | 0x40 |
SERIAL_ERROR_ABORT | If there exists an error condition the driver stops reading and writing from or to this port. | 0x80000000 |
FlowReplace
[In] FlowReplace is a set of flags defining flow control stuff. Can be combination of the following flags:
|
XOnLimit
[In] Minimum number of bytes allowed in the input buffer before flow control is activated to inhibit the sender.
XOffLimit
[In] Maximum number of bytes allowed in the input buffer before flow control is activated to allow transmission by the sender.