Description

Notifies that a pin on the RX Control serial port has changed state.

Syntax

Private Sub object_SerialStatus(nEvent, nStatus)

The SerialStatus Event syntax has these parts:

PartDescription
objectAn EchoLinkSession object.
nEventA Long value.

Contains any combination of one or more of the following bit values:

&h0008 (EV_CTS): The CTS (clear-to-send) signal changed state.

&h0010 (EV_DSR): The DSR (data-set-ready) signal changed state.

&h0020 (EV_RLSD): The RLSD (receive-line-signal-detect, also known as CD or carrier-detect) signal changed state.

nStatusA Long value.

Indicates the current status of the RS-232 signals, with a bit 1 indicating on (or asserted), and bit 0 indicating off (or inhibited).

The bit fields are defined as follows:

Value Meaning
&h0010 The CTS (clear-to-send) signal is on.
&h0020 The DSR (data-set-ready) signal is on.
&h0080 The RLSD (receive-line-signal-detect) signal is on.