do the same for dbit and adcclk
Build on RHEL9 docker image / build (push) Successful in 3m49s
Build on RHEL8 docker image / build (push) Successful in 4m47s
Run Simulator Tests on local RHEL9 / build (push) Failing after 11m6s
Run Simulator Tests on local RHEL8 / build (push) Failing after 13m9s

This commit is contained in:
2026-03-18 15:50:18 +01:00
parent 339b96cdd3
commit a810ddeaf4
3 changed files with 61 additions and 29 deletions
+4 -4
View File
@@ -2148,9 +2148,9 @@ Result<int> Detector::getADCClock(Positions pos) const {
return pimpl->Parallel(&Module::getClockFrequency, pos, defs::ADC_CLOCK);
}
void Detector::setADCClock(int value_in_MHz, Positions pos) {
void Detector::setADCClock(int value_in_Hz, Positions pos) {
pimpl->Parallel(&Module::setClockFrequency, pos, defs::ADC_CLOCK,
value_in_MHz);
value_in_Hz);
}
Result<int> Detector::getRUNClock(Positions pos) const {
@@ -2281,9 +2281,9 @@ Result<int> Detector::getDBITClock(Positions pos) const {
return pimpl->Parallel(&Module::getClockFrequency, pos, defs::DBIT_CLOCK);
}
void Detector::setDBITClock(int value_in_MHz, Positions pos) {
void Detector::setDBITClock(int value_in_Hz, Positions pos) {
pimpl->Parallel(&Module::setClockFrequency, pos, defs::DBIT_CLOCK,
value_in_MHz);
value_in_Hz);
}
Result<int> Detector::getMeasuredPower(defs::dacIndex index,