- New batch file management module
- New oscillator module - Bug fixes SKIPPED: psi/buffer.c psi/el734hp.c psi/el737hpdriv.c psi/make_gen psi/nextrics.c psi/nxamor.c psi/pimotor.c psi/polterwrite.c psi/psi.c psi/swmotor2.c psi/tasscan.c psi/tricssupport.c psi/tricssupport.h psi/tecs/make_gen psi/utils/ecb_load_new/ecb_load.c psi/utils/ecb_load_new/ecb_load.h psi/utils/ecb_load_new/ecbdriv_els.c psi/utils/ecb_load_new/gpib_els.c psi/utils/ecb_load_new/makefile psi/utils/ecb_load_new/makefile_EGPIB psi/utils/ecb_load_new/makefile_GPIB
This commit is contained in:
13
ofac.c
13
ofac.c
@ -104,6 +104,9 @@
|
||||
#include "help.h"
|
||||
#include "site.h"
|
||||
#include "nxupdate.h"
|
||||
#include "confvirtmot.h"
|
||||
#include "exeman.h"
|
||||
#include "oscillate.h"
|
||||
/*----------------------- Server options creation -------------------------*/
|
||||
static int IFServerOption(SConnection *pCon, SicsInterp *pSics, void *pData,
|
||||
int argc, char *argv[])
|
||||
@ -279,6 +282,13 @@
|
||||
AddCommand(pInter,"DrivableInvoke", TclDrivableInvoke,NULL,NULL);
|
||||
AddCommand(pInter,"UpdateFactory",UpdateFactory,NULL,NULL);
|
||||
AddCommand(pInter,"allowexec",AllowExec,NULL,NULL);
|
||||
AddCommand(pInter,"MakeConfigurableMotor",
|
||||
MakeConfigurableVirtualMotor,NULL,NULL);
|
||||
AddCommand(pInter,"MakeBatchManager",
|
||||
MakeExeManager,NULL,NULL);
|
||||
AddCommand(pInter,"MakeOscillator",
|
||||
MakeOscillator,NULL,NULL);
|
||||
|
||||
|
||||
/*
|
||||
install site specific commands
|
||||
@ -335,6 +345,9 @@
|
||||
RemoveCommand(pSics,"MakeTclInt");
|
||||
RemoveCommand(pSics,"UpdateFactory");
|
||||
RemoveCommand(pSics,"allowexec");
|
||||
RemoveCommand(pSics,"MakeConfigurableMotor");
|
||||
RemoveCommand(pSics,"MakeBatchManager");
|
||||
RemoveCommand(pSics,"MakeOscillator");
|
||||
|
||||
/*
|
||||
remove site specific installation commands
|
||||
|
Reference in New Issue
Block a user