stopBits

Type: Integer

The stopBits property of the JadeSerialPort class contains the duration of the framing signal that is sent after transmitting each byte. The default value is StopBits_1_0 (0).

The values for the stopBits property are listed in the following table.

Constant Integer Value Duration of Framing Signal
StopBits_1_0 0 One bit
StopBits_1_5 1 One and a half bits
StopBits_2_0 2 Two bits

The following code fragment shows the use of the stopBits property.

vars
    sp: JadeSerialPort;
begin
    create sp transient;
    sp.stopBits := JadeSerialPort.StopBits_1_0;