Diagnostic loop back – Rockwell Automation 6001-F2E AB STANDARD DRIVER SFTW User Manual
Page 30

Application Program Examples
Appendix A
A-8
/* ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
/*
DH/DH+ Application Library (c) 1989 Allen–Bradley
APPLICATION: Diagnostic Loop Back
SYMBOL: PLCx_DLB
Include files:
Linkable Driver:
#include “krdefs.h”
#include “stddrv.h”
Application Variables:
int
size,
PLC_FCT;
unsigned int status,
io_stat[2],
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 = (unsigned char *)NULL;
DHP_MSG.len = size; /* Size in bytes (max 243)
*/
DHP_MSG.buf = &d_buff[0]; /* Loop back buffer
DHP_MSG.TO = timeout; /* Reply timeout in sec */
PLC_FCT = PLCx_DLB; /* Initialize a PLC function */
Diagnostic Loop Back