-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ticket7350 #1
Ticket7350 #1
Conversation
record(mbbi, "$(P)JMP:MODE") | ||
{ | ||
field(INP, "$(PVPREFIX)TJMPER_$(TJMPER_IOC_ID):MODE CP MSS") | ||
field(SCAN, "Passive") | ||
field(DTYP, "Soft Channel") | ||
field(ZRST, "All out") # All home | ||
field(ONST, "PLT1 and SMPL engaged") # Engage Plate 1 and sample | ||
field(TWST, "PLT2 and SMPL engaged") # Engage Plate 2 and sample | ||
info(interest, "HIGH") | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When does this record actually process? SCAN is Passive but I don't see anything linking to it
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Doesn't using CP
in the INP
field mean that the record is processed when the input updates?
record(ai, "$(P)SAMPLE:TEMP") | ||
{ | ||
field(INP, "$(PVPREFIX)$(SAMPLE_TEMP_READBACK):TEMP CP MSS") | ||
field(DESC, "Value for the sample temperature") | ||
field(SCAN, "Passive") | ||
field(DTYP, "Soft Channel") | ||
info(interest, "HIGH") | ||
info(archive, "VAL") | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Likewise for this input
ISISComputingGroup/IBEX#7350