mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-06-16 23:07:13 +02:00
gotthard2: timingsource and currentsource features, (timing source external yet to be implemented in fpga to test (#80)
This commit is contained in:
@ -1204,6 +1204,22 @@ void Detector::setBurstMode(defs::burstMode value, Positions pos) {
|
||||
pimpl->Parallel(&slsDetector::setBurstMode, pos, value);
|
||||
}
|
||||
|
||||
Result<bool> Detector::getCurrentSource(Positions pos) const {
|
||||
return pimpl->Parallel(&slsDetector::getCurrentSource, pos);
|
||||
}
|
||||
|
||||
void Detector::setCurrentSource(bool value, Positions pos) {
|
||||
pimpl->Parallel(&slsDetector::setCurrentSource, pos, value);
|
||||
}
|
||||
|
||||
Result<defs::timingSourceType> Detector::getTimingSource(Positions pos) const {
|
||||
return pimpl->Parallel(&slsDetector::getTimingSource, pos);
|
||||
}
|
||||
|
||||
void Detector::setTimingSource(defs::timingSourceType value, Positions pos) {
|
||||
pimpl->Parallel(&slsDetector::setTimingSource, pos, value);
|
||||
}
|
||||
|
||||
// Mythen3 Specific
|
||||
|
||||
Result<uint32_t> Detector::getCounterMask(Positions pos) const {
|
||||
|
Reference in New Issue
Block a user