merge fix from 3.0.1 which includes server without crash, multi settimer -1 bug, need to recompile eiger server for this branch

This commit is contained in:
2017-10-12 14:42:57 +02:00
11 changed files with 103 additions and 56 deletions

View File

@ -346,6 +346,11 @@ int slsDetectorUsers::startAcquisition() {
return myDetector->startAcquisition();
}
int slsDetectorUsers::stopAcquisition() {
return myDetector->stopAcquisition();
}
int slsDetectorUsers::setReceiverSilentMode(int i) {
return myDetector->setReceiverSilentMode(i);
}

View File

@ -598,11 +598,19 @@ class slsDetectorUsers
int stopReceiver();
/**
start detector acquisition in non blocking mode
start detector real time acquisition in non blocking mode
does not include scans, scripts, incrementing file index, s
tarting/stopping receiver, resetting frames caught in receiver
\returns OK if all detectors are properly started, FAIL otherwise
*/
int startAcquisition();
/**
stop detector real time acquisition
\returns OK if all detectors are properly started, FAIL otherwise
*/
int stopAcquisition();
/**
* set receiver in silent mode
* @param i 1 sets, 0 unsets (-1 gets)