- Connections write timeouts were incorrectly handled in asynnetc. Fixed.
- Implemented the desired run/drive behaviour: drive waits for what it started run starts, and success waits for everything to finish. This required changes to a lot of files. - Fixed a bug in remob which supressed required messages
This commit is contained in:
@@ -614,13 +614,13 @@ int MonoRun(pSicsSelector self, SConnection * pCon, float fWaveLength)
|
||||
/* start each motor in turn */
|
||||
iRet = StartDevice(GetExecutor(), self->pTheta->name,
|
||||
self->pTheta->pDescriptor,
|
||||
self->pTheta, pCon, sNeu.fTheta);
|
||||
self->pTheta, pCon, pCon->runLevel, sNeu.fTheta);
|
||||
if (!iRet) {
|
||||
return 0;
|
||||
}
|
||||
iRet = StartDevice(GetExecutor(), self->pTwoTheta->name,
|
||||
self->pTwoTheta->pDescriptor,
|
||||
self->pTwoTheta, pCon, sNeu.fTwoTheta);
|
||||
self->pTwoTheta, pCon, pCon->runLevel, sNeu.fTwoTheta);
|
||||
if (!iRet) {
|
||||
return 0;
|
||||
}
|
||||
@@ -630,7 +630,7 @@ int MonoRun(pSicsSelector self, SConnection * pCon, float fWaveLength)
|
||||
if (self->pBend1) {
|
||||
iRet = StartDevice(GetExecutor(), self->pBend1->name,
|
||||
self->pBend1->pDescriptor,
|
||||
self->pBend1, pCon, sNeu.fVert);
|
||||
self->pBend1, pCon, pCon->runLevel, sNeu.fVert);
|
||||
if (!iRet) {
|
||||
return 0;
|
||||
}
|
||||
@@ -639,7 +639,7 @@ int MonoRun(pSicsSelector self, SConnection * pCon, float fWaveLength)
|
||||
if (self->pBend2) {
|
||||
iRet = StartDevice(GetExecutor(), self->pBend2->name,
|
||||
self->pBend2->pDescriptor,
|
||||
self->pBend2, pCon, sNeu.fHor);
|
||||
self->pBend2, pCon, pCon->runLevel, sNeu.fHor);
|
||||
if (!iRet) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user