-
Notifications
You must be signed in to change notification settings - Fork 2
Aeroflex
Zsolt Kébel edited this page Jul 26, 2023
·
4 revisions
Previous logic of the ioc had this logic for sending mode params:
In db file at aeroflexSup\aeroflex_2023A.db
record(calcout, "$(P)SEND_MODE_PARAMS")
{
field(DESC, "Set modulation button")
field(SCAN, "Passive")
field(INPA, "$(P)MODE:SP_NO_ACTION")
field(INPB, "$(P)PULSE_CHECK:SP")
field(CALC, "(B = 0) ? ((2 * A) + 1) : (2 * A)")
field(OUT, "$(P)MODE:SP PP")
}
In db file at aeroflexSup\aeroflex_2030.db
record(calcout, "$(P)SEND_MODE_PARAMS")
{
field(DESC, "Set modulation button")
field(SCAN, "Passive")
field(INPA, "$(P)MODE:SP_NO_ACTION")
field(INPB, "$(P)PULSE_CHECK:SP")
field(CALC, "((B=1)&&(A>2))?(A-3):(A+2)")
field(OUT, "$(P)MODE:SP PP")
}
These are now removed.