- Fixes to make SL6 work
- New NeXus libraries - Added new raw binary transfer mode for mass data - Added a check script option to configurable virtual motor
This commit is contained in:
12
psi.c
12
psi.c
@ -80,6 +80,11 @@ void SiteInit(void)
|
||||
|
||||
static pSite sitePSI = NULL;
|
||||
|
||||
/*
|
||||
* from tclClock.c
|
||||
*/
|
||||
int Tcl_ClockObjCmd (ClientData client, Tcl_Interp *interp, int objc, Tcl_Obj *CONST objv[]);
|
||||
|
||||
/*----------------------------------------------------------------------*/
|
||||
static void AddPsiCommands(SicsInterp * pInter)
|
||||
{
|
||||
@ -126,6 +131,13 @@ static void AddPsiCommands(SicsInterp * pInter)
|
||||
SCMD("SerialInit", SerialInit);
|
||||
SCMD("MakeEiger", InitEiger);
|
||||
PCMD("cnvrt", CnvrtAction);
|
||||
|
||||
/*
|
||||
* Tcl 8.5 has implemented the clock command in tcl rather then C.
|
||||
* This includes the same command, backported from Tcl 8.4
|
||||
*/
|
||||
Tcl_CreateObjCommand(InterpGetTcl(pServ->pSics), "clock", Tcl_ClockObjCmd, NULL, NULL);
|
||||
|
||||
/*
|
||||
SCMD("MakeDifrac",MakeDifrac);
|
||||
*/
|
||||
|
Reference in New Issue
Block a user