- Fixed conflicts in ascon.c
- Supressed superfluous message from fmess - Expanded multicounter to deal with threshold commands nicely - Fixed an an issue with an uninitialized dummy connection in nserver - Many changes to simidex to make it work in a more reliable way. - Added hdbfactory path alias targetpath - Extended frame to deal with sinqhttp HM
This commit is contained in:
@ -114,7 +114,7 @@ static int GetSimPos(pVelSelDriv self, float *fPos)
|
||||
assert(self);
|
||||
if (SimRandom() < FAILURE) {
|
||||
*fPos = SimRandom();
|
||||
return HWFault;
|
||||
return VELOFAIL;
|
||||
}
|
||||
|
||||
pDriv = (pSimi) self->pPrivate;
|
||||
@ -127,9 +127,9 @@ static int GetSimPos(pVelSelDriv self, float *fPos)
|
||||
} else {
|
||||
*fPos = pDriv->fPos;
|
||||
}
|
||||
return OKOK;
|
||||
return VELOOK;
|
||||
}
|
||||
return OKOK;
|
||||
return VELOOK;
|
||||
}
|
||||
|
||||
/*----------------------------------------------------------------------------*/
|
||||
|
Reference in New Issue
Block a user