Serial Port I/O Function: Sets the baud rate, parity, data bits setting, and stop bits setting of the communications port.
Module: USE IFPORT
Syntax
result = SPORT_SET_STATE (port [, baud] [, parity] [, dbits] [, sbits])
port
(Input) Integer. The port number.
baud
(Input; optional) Integer. The baud rate of the port.
parity
(Input; optional) Integer. The parity setting of the port (0-4 = no, odd, even, mark, space).
dbits
(Input; optional) Integer. The data bits for the port.
sbits
(Input; optional) Integer. The stop bits for the port (0, 1, 2 = 1, 1.5, 2).
Results
The result type is INTEGER(4). The result is zero if successful; otherwise, a Windows* error value.
The following restrictions apply:
This routine must not be used when any I/O is pending. Since a read operation is always pending after any I/O has been started, you must first call SPORT_CANCEL_IO before port parameters can be changed.
Compatibility
CONSOLE STANDARD GRAPHICS QUICKWIN GRAPHICS WINDOWS DLL LIB
See Also
SPORT_CANCEL_IO, SPORT_GET_STATE, Building Applications: Using the Serial I/O Port Routines, and Communications, Communications Functions, and SetCommState in the Microsoft* Platform SDK
Example
USE IFPORT
INTEGER(4) iresult
iresult = SPORT_SET_STATE( 2, 9600, 0, 7, 1 )
END