<< Click to Display Table of Contents >> Navigation: »No topics above this level« MININET device objects |
The communication device being used is determined with the MININET device object. The communication device with the necessary device parameters and MININET protocol parameters are defined in the connection description of the device object. Within the connection description, individual parameters are differentiated between using parameter identifiers. These parameter identifiers always begin with the "/" character.
Connection description syntax:
/IF=<DeviceName> [/<Identifier1>=<ParameterValue> [/<Identifier2>=<ParameterValue> ... ]]
Device names are not case sensitive, and at least one space character must be between each parameter specification.
The connection description must always be specified in quotation marks ("...") in the object description.
The following table shows all parameters which can be defined in a device object's connection description.
Par. |
Values |
Settings |
Description |
/IF |
com1 ... comX |
None |
By default: COM1 to COM4. With some serial interface cards or adapters, it is possible to have more than COM4. Example: "/IF=com1" |
/BD |
1200, 1800, 2400, 3600, 4800, 7200, 9600, 19200 |
57600 |
Baud rate in bits per second Example: "/BD=19200" |
/RS |
-1, 0, 232, 422, 485 |
232 |
Sets the RS232 or RS422 protocol. Example: "/RS=485" This parameter sets the flow control of the CTS (clear to send) and RTS (request to send) lines of the serial interface. Possible parameter values: = -1: PVI doesn't modify the current setting (see the interface device properties) of the CTS/RTS flow control. = 0: Always shut off the RTS line (disables RTS flow control). = 232: Use RTS handshake. = 422: Always turn on the RTS line. = 485: Turn on the RTS line at the beginning of a transfer or during the transfer. CTS flow control is disabled whenever the parameter value >= 0. Many USB/serial adapters (USB to serial interface) do not handle CTS/RTS flow control correctly. The parameter "/RS=0" must be specified to establish an RS232 connection using these adapters. |
/PA |
0 - 4 |
1 |
Parity setting 0=NOPARITY 1=ODDPARITY 2=EVENPARITY 3=MARKPARITY 4=SPACEPARITY Default setting for MININET communication is "/PA=0". |
/IT |
0 - 60000 |
20 |
Interval timeout (msec) Defined as the maximum time that can pass between receiving two consecutive characters. The MININET protocol uses this time to recognize the end of a received frame. Example: "/IT=40" |
/TT |
0 - 60000 |
3000 |
Timeout for requests (ms) This value must correspond at least to the maximum response time of the controller + the transfer time of 256 characters (depends on the baud rate). Example: "/TT=512" |
/RETRY |
1 - 255 |
3 |
Retry counter for errors After a request is sent, a valid response must be received with the time /TT. Otherwise, the procedure is repeated. The maximum number of retries can be modified with /RETRY. An error is only reported after the last retry takes place. Example: "/RETRY=2" |
Connection description example:
CD="/IF=com1 /RS=485 /BD=19200 /PA=0 /IT=20 /TT=500 /RETRY=2"