changed PVs: NEW, DEL -> NAME, TYPE, ADD, REMOVE

This commit is contained in:
2024-11-13 21:52:59 +01:00
parent fcd48fe411
commit 9a4469b173

View File

@ -1,16 +1,26 @@
record(ai, "$(SYSTEM):IDN") {
field(DESC, "Device ID") record(stringin, "$(SYSTEM):NAME") {
field(DESC, "Name of the PV to be added or deleted")
} }
record(stringin, "$(SYSTEM):NEW") { record(mbbi, "$(SYSTEM):TYPE") {
field(DESC, "New") field(DESC, "Type of the PV to be added or deleted")
field(VAL, "") field(ZRST, "float")
field(SCAN, "Passive") field(ONST, "int")
field(TWST, "bool")
field(THST, "str")
} }
record(stringin, "$(SYSTEM):DEL") { record(bi, "$(SYSTEM):ADD") {
field(DESC, "Delete") field(DESC, "Add the PV as configured")
field(VAL, "") field(ZNAM, "idle")
field(SCAN, "Passive") field(ONAM, "proc")
} }
record(bi, "$(SYSTEM):REMOVE") {
field(DESC, "Remove the PV as configured")
field(ZNAM, "idle")
field(ONAM, "proc")
}