35 lines
883 B
C
35 lines
883 B
C
/*-------------------------------------------------------------------------
|
|
O R H V P S
|
|
|
|
Support for Oak Ridge High Voltage Power Supply for SICS.
|
|
|
|
The meaning and working of the functions defined is as desribed for a
|
|
general environment controller.
|
|
|
|
Douglas Clowes, December 2007
|
|
|
|
copyright: see implementation file.
|
|
|
|
-----------------------------------------------------------------------------*/
|
|
#ifndef SICSORHVPS
|
|
#define SICSORHVPS
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include "sics.h"
|
|
#include <obpar.h>
|
|
#include <evcontroller.h>
|
|
#include <evcontroller.i>
|
|
#include "evdriver.h"
|
|
|
|
void ORHVPSInitProtocol(SicsInterp *pSics);
|
|
|
|
pEVDriver CreateORHVPSDriver(int argc, char *argv[]);
|
|
|
|
void ORHVPSRegister(pEVControl self, pEVDriver driv);
|
|
|
|
int ORHVPSWrapper(SConnection *pCon, SicsInterp *pSics, void *pData,
|
|
int argc, char *argv[]);
|
|
#endif
|
|
|