Skip to content
Snippets Groups Projects
Commit 72543f57 authored by Hinko Kocevar's avatar Hinko Kocevar
Browse files

Merge branch 'jira_icshwi_9569' into 'master'

ICSHWI-9569 add calculated AdcScale range checking

See merge request beam-diagnostics/bde/modules/adsis8300bcm!33
parents 6b9d0015 3a4cbd87
No related branches found
No related tags found
No related merge requests found
Pipeline #115034 failed
......@@ -125,6 +125,14 @@ record(calcout, "$(P)$(R)AdcScaleCalc")
field(INPC, "$(P_BCM=$(P))$(R)CalibrationActualCurrent")
field(INPD, "$(P_BCM=$(P))$(R)CalibrationPulseCounter CPP")
field(CALC, "(163.84*C) / (B-A)")
field(FLNK, "$(P)$(R)AdcScaleCalcCheck.PROC")
}
record(calcout, "$(P)$(R)AdcScaleCalcCheck")
{
field(INPA, "$(P)$(R)AdcScaleCalc")
field(CALC, "(0 < A) AND (A < 2) ? A : 0")
field(OOPT, "When Non-zero")
field(OUT, "$(P)$(R)AdcScale PP")
}
......
......@@ -658,9 +658,7 @@ record(bo, "$(P)$(R)EnableCalibrationPulse")
field(ONAM, "Enable")
field(HIGH, "1")
field(VAL, "0")
field(PINI, "YES")
field(ASG, "critical")
info(autosaveFields, "VAL")
}
record(calcout, "$(P)$(R)CalibrationPulseMonitor")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment