Symboles des types de données Lab VIEW

 
cbool Bolléen 
cu32 Entier non signé 32 bits
ci32 Entier 32 bits signé
cstr Chaîne de caractères
istr Tableau de chaînes de caractères
iclst Enregistrement de données
ipath Chemin d'accès à un fichier

 
 
ci32 port number in   Port série sur lequel est connecté le calculateur voir ci-dessous 
ii32 port number out   Le port série (ce module de modifie pas cette valeur mais ce mécanisme - in - out 
a été utiliser pour simplifier les diagrammes)
cclst error in   Enregistrement de gestion d'erreur de labVIEW
  cbool status = FALSE pas d'erreur
The status boolean is either TRUE (cross) for an error, or FALSE (checkmark) for no error or a warning.
The pop-up option Explain Error (or Explain Warning) gives more information about the error displayed.
  ci32 code The code input identifies the error or warning reported.
The pop-up option Explain Error (or Explain Warning) gives more information about the error displayed
  cstr source The source string describes the origin of the error or warning reported.
The pop-up option Explain Error (or Explain Warning) gives more information about the error displayed.
iclst error out   Le même enregistrement en sortie du module
  ibool status  
  ii32 code  
  istr source  

ci32 port number(com1)
When you use the serial port VIs under Windows, the port number parameter can have the following values:
0: COM1 5: COM6 10: LPT1
1: COM2 6: COM7 11: LPT2
2: COM3 7: COM8 12: LPT3
3: COM4 8: COM9 13: LPT4
4: COM5
On the Macintosh, port 0 is the modem, using the drivers .ain and .aout. Port 1 is the printer, using the drivers.bin and .bout. To get more ports on a Macintosh, you must install other boards, with the accompanying drivers.
On SunOS, the default mapping for port numbers is /dev/ttya, /dev/ttyb, and so on.
On Solaris, the default mapping for port numbers is /dev/cua/a, /dev/cua/b, and so on.
On HPUX, the default mapping for port numbers is /dev/tty00, /dev/tty01, and so on. NOTE that these defaults work for HPUX 9.x but don't work for HPUX 10.x. Use the serialDevices preference in your preferences file to adjust the names. On HPUX 10.x the built-in serial ports are usually named /dev/tty0p0 and /dev/tty1p0.
On Cuncurrent, the default mapping for port numbers is /dev/console, /dev/tty1, /dev/tty2, and so on.
cu16 buffer size(1024)
buffer size indicates the size of the input and output buffers the VI allocates for communication through the specified port. If buffer size is less than or equal to 1 K, the VI uses 1 K as the buffer size. You may need to use larger buffers for large data transfers.
cu32 baud rate(9600)
baud rate is the rate of transmission.
cu16 data bits(8)
data bits is the number of bits in the incoming data. The value of data bits is between five and eight.
cenum stop bits(1)
stop bits is 0 for one stop bit, or 1 for two stop bits. 
cenum parity(no)
parity is 0 for no parity, 1 for odd parity, or 2 for even parity.
cclst flow control etc.