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") {
field(DESC, "New")
field(VAL, "")
field(SCAN, "Passive")
record(mbbi, "$(SYSTEM):TYPE") {
field(DESC, "Type of the PV to be added or deleted")
field(ZRST, "float")
field(ONST, "int")
field(TWST, "bool")
field(THST, "str")
}
record(stringin, "$(SYSTEM):DEL") {
field(DESC, "Delete")
field(VAL, "")
field(SCAN, "Passive")
record(bi, "$(SYSTEM):ADD") {
field(DESC, "Add the PV as configured")
field(ZNAM, "idle")
field(ONAM, "proc")
}
record(bi, "$(SYSTEM):REMOVE") {
field(DESC, "Remove the PV as configured")
field(ZNAM, "idle")
field(ONAM, "proc")
}