fix eiger
Some checks failed
Build on RHEL9 / build (push) Successful in 3m46s
Build on RHEL8 / build (push) Successful in 5m11s
Run Simulator Tests on local RHEL9 / build (push) Failing after 9m36s
Run Simulator Tests on local RHEL8 / build (push) Failing after 11m35s

This commit is contained in:
2026-02-13 12:18:40 +01:00
parent 621031f638
commit da2963a274

View File

@@ -1585,7 +1585,7 @@ int writeDACSpi(enum DACINDEX ind, int dacval, char *mess) {
int setThresholdDACs(int val, bool mV, char *mess) {
enum DACINDEX indices[5] = {E_VCMP_LL, E_VCMP_LR, E_VCMP_RL, E_VCMP_RR,
E_VCP};
for (int i = 1; i != 5; ++i) {
for (int i = 0; i != 5; ++i) {
if (setDAC(indices[i], val, mV, mess) == FAIL)
return FAIL;
}