34 lines
914 B
C
34 lines
914 B
C
/*-------------------------------------------------------------------------
|
|
LS340 - LAKESHORE 340
|
|
|
|
Asynchronous state-machine based driver for controller LAKESHORE 340
|
|
|
|
The meaning and working of the functions defined is as desribed for a
|
|
general environment controller.
|
|
|
|
Adapted by Rodney Davies from ORHVPS code written by:
|
|
Douglas Clowes, December 2007
|
|
|
|
copyright: see implementation file.
|
|
|
|
-----------------------------------------------------------------------------*/
|
|
#ifndef SICSLS340
|
|
#define SICSLS340
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include "sics.h"
|
|
#include <obpar.h>
|
|
#include "ansto_evcontroller.h"
|
|
|
|
void LS340InitProtocol(SicsInterp *pSics);
|
|
|
|
pEVDriver CreateLS340Driver(int argc, char *argv[]);
|
|
|
|
void LS340Register(pEVControl self, pEVDriver driv);
|
|
|
|
int LS340Wrapper(SConnection *pCon, SicsInterp *pSics, void *pData,
|
|
int argc, char *argv[]);
|
|
#endif
|
|
|