- Fixed a bug fix with Fixed motor in TAS code
- Made AMOR write HDF-5 data in chunks - Added driver for a PSI-DSP magnet controller as used at SLS - Added code for directly accessing RS232 controllers connected to a terminal server, thereby bypassing the SerPortServer - A rounding problem in the PSD histogram memory was resolved.
This commit is contained in:
11
tasutil.c
11
tasutil.c
@@ -439,8 +439,8 @@ int TASStart(pTASdata self, SConnection *pCon, SicsInterp *pSics,
|
||||
tasMotorOrder[i], motorTargets[i]);
|
||||
if(status == 0)
|
||||
{
|
||||
/* the error will have been reported */
|
||||
return 0;
|
||||
/* the error will have been reported and must be ignored */
|
||||
SCSetInterrupt(pCon,eContinue);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -453,8 +453,8 @@ int TASStart(pTASdata self, SConnection *pCon, SicsInterp *pSics,
|
||||
"MCV", motorTargets[6]);
|
||||
if(status == 0)
|
||||
{
|
||||
/* the error will have been reported */
|
||||
return 0;
|
||||
/* the error will have been reported but must be ignored*/
|
||||
SCSetInterrupt(pCon,eContinue);
|
||||
}
|
||||
}
|
||||
if(motorMask[8])
|
||||
@@ -463,7 +463,8 @@ int TASStart(pTASdata self, SConnection *pCon, SicsInterp *pSics,
|
||||
"ACH", motorTargets[8]);
|
||||
if(status == 0)
|
||||
{
|
||||
/* the error will have been reported */
|
||||
/* the error will have been reported but must be ignored*/
|
||||
SCSetInterrupt(pCon,eContinue);
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user