Files
sics/evcontroller.i
cvs bc02cb79e7 - made fixes to hkl
- Introduced a help system
- introduced a module for handling automatic updates of files during
  long measurements
- Added a circular buffer and handling facilities to varlog
- Upgraded documentation


SKIPPED:
	psi/faverage.h
	psi/nxamor.tex
	psi/pimotor.h
	psi/pimotor.tex
2003-12-10 13:50:44 +00:00

50 lines
1.8 KiB
OpenEdge ABL

#line 239 "evcontroller.w"
/*-------------------------------------------------------------------------
Environment controller datastructure
Mark Koennecke, Juli 1997
---------------------------------------------------------------------------*/
/*-------- Parameter defines */
#define TOLERANCE 0
#define ACCESS 1
#define ERRORHANDLER 2
#define INTERRUPT 3
#define UPLIMIT 4
#define LOWLIMIT 5
#define SAFEVALUE 6
#define MAXWAIT 7
#define SETTLE 8
#line 29 "evcontroller.w"
typedef struct __EVControl {
pObjectDescriptor pDes;
pIDrivable pDrivInt;
pEVInterface pEnvir;
pICallBack pCall;
int callCount;
pEVDriver pDriv;
EVMode eMode;
float fTarget;
time_t start;
time_t lastt;
char *pName;
char *driverName;
char *errorScript;
ObPar *pParam;
int iLog;
pVarLog pLog;
int iWarned;
int iTcl;
int iStop;
void *pPrivate;
void (*KillPrivate)(void *pData);
} EVControl;
#line 257 "evcontroller.w"