Moved dacs to it's own command for command line. 
Co-authored-by: Erik Frojdh <erik.frojdh@gmail.com>
This commit is contained in:
Dhanya Thattil
2020-09-24 17:16:34 +02:00
committed by GitHub
parent c862f1df81
commit 2c1fddee84
21 changed files with 545 additions and 420 deletions

View File

@ -1353,6 +1353,10 @@ void Detector::setBurstPeriod(ns value, Positions pos) {
pimpl->Parallel(&Module::setBurstPeriod, pos, value.count());
}
Result<int64_t> Detector::getNumberOfBurstsLeft(Positions pos) const {
return pimpl->Parallel(&Module::getNumberOfBurstsLeft, pos);
}
Result<std::array<int, 2>> Detector::getInjectChannel(Positions pos) {
return pimpl->Parallel(&Module::getInjectChannel, pos);
}