- Modified collective drive operations to run motors in individual tasks

- Added a processnode methos to scriptcontext. processnode waits for the
  scriptchain of a node to finish.
- Fixed a bug in sicsget
- Made histmemsec dim and rank manager privilege. To allow chnage at runtime.
  Is required for SANS
- Fixed some issues with multicountersec, mostly relating to passing things through
  in a sensible way.
- Updated motorsec.c to work with a client based driver
This commit is contained in:
koennecke
2014-02-18 13:25:33 +00:00
parent d00f143255
commit 4fdb6612cc
3 changed files with 29 additions and 21 deletions

View File

@ -335,7 +335,11 @@ static void PoldiStart(pPolterdi self, SConnection * pCon)
for (i = 0; i < iLength; i++) {
fTime2[i] = fTime[i] / 2.;
}
sprintf(pBueffel, "%d", iLength);
if(iLength > 2){
sprintf(pBueffel, "%d", iLength);
} else {
sprintf(pBueffel, "%d", 1);
}
NXDupdate(hdict, "timebin", pBueffel);
NXDputalias(hfil, hdict, "dtime", fTime2);
free(fTime2);