Diagnostic counter read, Ać10 – Rockwell Automation 6001-F2E AB STANDARD DRIVER SFTW User Manual
Page 32

Application Program Examples
Appendix A
A-10
/* ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
/*
DH/DH+ Application Library (c) 1989 Allen–Bradley
APPLICATION: Diagnostic Counter Read
SYMBOL: PLCx_DCR
Include files:
Linkable Driver:
#include “krdefs.h”
#include “stddrv.h”
Application Variables:
int
size,
PLC_FCT;
unsigned int status,
io_stat[2],
ctr_addr;
timeout;
char device[]= “KR:0”;
unsigned char destination;
unsigned char d_buff[...];
struct SD_FB DHP_MSG;
*/
/* Initialize the DH-485 function block */
DHP_MSG.dev = device; /* Communication device */
DHP_MSG.stat = &io_stat[0]; /* I/O status */
DHP_MSG.L_R = 0;
DHP_MSG.dst = &destination; /* DH-485 address */
DHP_MSG.dta = &ctr_addr; /* Counter address ret’d from DS cmd */
DHP_MSG.len = size; /* Size in bytes (max 243) */
DHP_MSG.buf = &d_buff[0]; /* Counter buffer */
DHP_MSG.TO = timeout; /* Reply timeout in sec */
Diagnostic Counter Read