MJL 8/11/06 Added HMControl_ANSTO object.

r1257 | mle | 2006-11-08 17:00:15 +1100 (Wed, 08 Nov 2006) | 2 lines
This commit is contained in:
Mark Lesha
2006-11-08 17:00:15 +11:00
committed by Douglas Clowes
parent 4e8a7c39ac
commit a5867d0a9b

View File

@@ -24,9 +24,12 @@
/* Added code for new LH45 and Lakeshore 340 drivers */ /* Added code for new LH45 and Lakeshore 340 drivers */
#include "lh45.h" #include "lh45.h"
#include "lakeshore340.h" #include "lakeshore340.h"
/* Added HTTP support for Histogram Server */ /* Added HTTP support for ANSTO OPAL NBI Histogram Server */
#include "anstohttp.h" #include "anstohttp.h"
#include "anstoutil.h" #include "anstoutil.h"
/* Added customized HMControl object to support ANSTO OPAL NBI Histogram Server */
#include "hmcontrol.h"
#include "hmcontrol_ansto.h" // extends hmcontrol.h
/*@observer@*//*@null@*/ pCounterDriver CreateMonCounter(/*@observer@*/SConnection *pCon, /*@observer@*/char *name, char *params); /*@observer@*//*@null@*/ pCounterDriver CreateMonCounter(/*@observer@*/SConnection *pCon, /*@observer@*/char *name, char *params);
@@ -52,6 +55,7 @@ static void AddCommands(SicsInterp *pInter)
(void) AddCommand(pInter,"MakeTCPSelector",VelSelTcpFactory,NULL,NULL); (void) AddCommand(pInter,"MakeTCPSelector",VelSelTcpFactory,NULL,NULL);
(void) AddCommand(pInter,"portnum",portNumCmd,NULL,NULL); (void) AddCommand(pInter,"portnum",portNumCmd,NULL,NULL);
// (void) AddCommand(pInter,"MakePLC",MakePLC,NULL,NULL); // (void) AddCommand(pInter,"MakePLC",MakePLC,NULL,NULL);
AddCommand(pInter,"MakeHMControl_ANSTO",MakeHMControl_ANSTO,NULL,NULL);
} }
/*---------------------------------------------------------------------*/ /*---------------------------------------------------------------------*/
static void RemoveCommands(SicsInterp *pSics){ static void RemoveCommands(SicsInterp *pSics){