ICP DAS
LinPAC-52xx Series XV-Board API User Manual
16
Example:
int RetValue, comport=COM1, count=1;
int addr=33;
/* Refer to [Remark 1] */
char szBuf[80];
DWORD baudrate=115200;
/* Open the device file */
RetValue=Open_Com(comport, baudrate, Data8Bit, NonParity, OneStopBit);
if (RetValue > 0) {
printf("open
COM%d
failed!\n",comport);
return
FAILURE;
}
memset(szBuf, 0, sizeof(szBuf));
RetValue=getXVRegBack(comport, addr, count, szBuf, sizeof(szBuf));
Close_Com(comport);
if (RetValue==0) {
dwValue=(szBuf[0]<<8)|szBuf[1];
printf("%u",
dwValue);
}
Remarks:
[1] This is the input value reference address mapping (Modbus register table) for the '
wAddr
'
parameter.
More information regarding address mapping can be found at:
http://ftp.icpdas.com.tw/pub/cd/linpac/napdos/lp-5000/lp-52xx/lp-5231/user_manual/xv-boar