Name
GetStopBits -- get stop bits for serial port connection (V8.0)
Synopsis
bits = GetStopBits(id)
Function
This command can be used to get the number of stop bits for the serial port connection specified in id. This serial port connection must have been opened using OpenSerialPort() before.

The return value will be one of the following special constants:

#STOP_1:
Use 1 stop bit.
#STOP_2:
Use 2 stop bits.

Inputs
id
identifier of the serial port connection to use
Results
bits
current stop bits as a special constant (see above)

Show TOC