- Added a sinq module for monitoring the Accelerator broadcast

- Added automatic notification via SMS
This commit is contained in:
koennecke
2005-07-08 12:32:38 +00:00
parent f11384ad2f
commit 20184de770
6 changed files with 608 additions and 2 deletions

3
psi.c
View File

@ -51,6 +51,7 @@
#include "fomerge.h"
#include "remob.h"
#include "tricssupport.h"
#include "sinq.h"
static pSite sitePSI = NULL;
@ -81,6 +82,7 @@ static void AddPsiCommands(SicsInterp *pInter){
AddCommand(pInter,"InstallFocusMerge",InstallFocusMerge,NULL,NULL);
AddCommand(pInter,"Remob",RemobCreate,NULL,NULL);
AddCommand(pInter,"Graph",LoggerGraph,NULL,NULL);
AddCommand(pInter,"MakeSinq",SinqFactory,NULL,NULL);
/*
AddCommand(pInter,"MakeDifrac",MakeDifrac,NULL,NULL);
*/
@ -109,6 +111,7 @@ static void RemovePsiCommands(SicsInterp *pSics){
RemoveCommand(pSics,"MakeECB");
RemoveCommand(pSics,"MakePSDFrame");
RemoveCommand(pSics,"SerialInit");
RemoveCommand(pSics,"MakeSinq");
}
/*---------------------------------------------------------------------*/
MotorDriver *CreateEL734(SConnection *pCon, int argc, char *argv[]);