36 lines
921 B
C
36 lines
921 B
C
/*-------------------------------------------------------------------------
|
|
N H Q 2 0 0
|
|
|
|
Support for FAST ComTec NHQ2xx High Voltage Power Supply for SICS.
|
|
|
|
The meaning and working of the functions defined is as desribed for a
|
|
general environment controller.
|
|
|
|
Adapted from orhvps code written by:
|
|
Douglas Clowes, December 2007
|
|
|
|
Douglas Clowes, May 2008
|
|
|
|
copyright: site_ansto/doc/Copyright.txt
|
|
|
|
-----------------------------------------------------------------------------*/
|
|
#ifndef SICSNHQ200
|
|
#define SICSNHQ200
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include "sics.h"
|
|
#include <obpar.h>
|
|
#include "ansto_evcontroller.h"
|
|
|
|
void NHQ200InitProtocol(SicsInterp *pSics);
|
|
|
|
pEVDriver CreateNHQ200Driver(int argc, char *argv[]);
|
|
|
|
void NHQ200Register(pEVControl self, pEVDriver driv);
|
|
|
|
int NHQ200Wrapper(SConnection *pCon, SicsInterp *pSics, void *pData,
|
|
int argc, char *argv[]);
|
|
#endif
|
|
|