- Renamed tasdrive to ptasdrive in order to help debugging
- Added ritastorage in order to solve storage order problem for RITA's area detector
This commit is contained in:
5
psi.c
5
psi.c
@ -65,6 +65,9 @@ extern int VelSelTcpFactory(SConnection *pCon, SicsInterp *pSics, void *pData,
|
||||
*/
|
||||
extern int JulChoFactory(SConnection *pCon, SicsInterp *pSics, void *pData,
|
||||
int argc, char *argv[]);
|
||||
/* from ritastorage.c */
|
||||
extern int MakeRitaFix(SConnection *pCon, SicsInterp *pSics, void *pData,
|
||||
int argc, char *argv[]);
|
||||
/*--------------------------------------------------------------------------*/
|
||||
void SiteInit(void) {
|
||||
|
||||
@ -116,6 +119,7 @@ static void AddPsiCommands(SicsInterp *pInter){
|
||||
AddCommand(pInter,"MakeAmorSet",AmorSetFactory,NULL,NULL);
|
||||
AddCommand(pInter,"MakeTCPSelector",VelSelTcpFactory,NULL,NULL);
|
||||
AddCommand(pInter,"MakeJulCho",JulChoFactory,NULL,NULL);
|
||||
AddCommand(pInter,"MakeRitaFix",MakeRitaFix,NULL,NULL);
|
||||
/*
|
||||
AddCommand(pInter,"MakeDifrac",MakeDifrac,NULL,NULL);
|
||||
*/
|
||||
@ -137,6 +141,7 @@ static void RemovePsiCommands(SicsInterp *pSics){
|
||||
RemoveCommand(pSics,"MakeAmorStatus");
|
||||
RemoveCommand(pSics,"MakeTCPSelector");
|
||||
RemoveCommand(pSics,"MakeJulCho");
|
||||
RemoveCommand(pSics,"MakeRitaFix");
|
||||
/*
|
||||
RemoveCommand(pSics,"MakeDifrac");
|
||||
*/
|
||||
|
Reference in New Issue
Block a user