SKIPPED: psi/dornier2.c psi/ecbdriv.c psi/el734hp.c psi/libpsi.a psi/make_gen psi/makefile_linux psi/pimotor.c psi/pipiezo.c psi/sinqhttp.c psi/tcpdornier.c psi/velodornier.c
31 lines
809 B
C
31 lines
809 B
C
|
|
/*-----------------------------------------------------------------------
|
|
A couple of utility functions for handling a list of MotReg
|
|
structures . This is a helper module for the anticollider collision
|
|
control system. See anticollider.tex for more details.
|
|
|
|
copyright: see file copyright
|
|
|
|
Mark Koennecke, August 2002
|
|
-------------------------------------------------------------------------*/
|
|
#ifndef MOTREGLIST
|
|
#define MOTREGLIST
|
|
|
|
#include "motreg.h"
|
|
|
|
|
|
int MakeMotList();
|
|
pMotReg FindMotEntry(int iList,char *name);
|
|
pMotReg FindMotFromDataStructure(int iList, void *pData);
|
|
int CheckAllMotors(int iList, SConnection *pCon);
|
|
void KillMotList(int iList);
|
|
void StopAllMotors(int iList);
|
|
void DeactivateAllMotors(int iList);
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|