Initial revision

This commit is contained in:
cvs
2000-02-07 10:38:55 +00:00
commit fdc6b051c9
846 changed files with 230218 additions and 0 deletions

37
drive.h Normal file
View File

@ -0,0 +1,37 @@
/*-------------------------------------------------------------------------
This object implements the general drive command for SICS.
It can drive parameters and motors and allmost everything.
Mark Koennecke, November 1996
copyright: see implementation file
-----------------------------------------------------------------------------*/
#ifndef SICSDRIVE
#define SICSDRIVE
#include "conman.h"
int Drive(SConnection *pCon,SicsInterp *pSics, char *name, float fNew);
int Start2Run(SConnection *pCon, SicsInterp *pSics, char *name, float
fNew);
int DriveWrapper(SConnection *pCon, SicsInterp *pSics, void *pData,
int argc, char *argv[]);
/*
the wrapper function for the drive command
*/
int RunWrapper(SConnection *pCon, SicsInterp *pSics, void *pData,
int argc, char *argv[]);
/*
the wrapper function for the run command
*/
int MakeDrive(SConnection *pCon, SicsInterp *pSics, void *pData,
int argc, char *argv[]);
/*
the factory function for the Drive & Run command
*/
#endif