diff --git a/documentation/motorRecord.html b/documentation/motorRecord.html
index 68c2f3fb..cf567b32 100644
--- a/documentation/motorRecord.html
+++ b/documentation/motorRecord.html
@@ -231,6 +231,20 @@ below.
DOUBLE |
acceleration time |
+
+ | ADEL |
+ R/W |
+ Archive Deadband |
+ DOUBLE |
+ Deadband on RBV archive monitor |
+
+
+ | ALST |
+ R |
+ Last Valve Archived |
+ DOUBLE |
+ Last RBV value to be archived |
+
| ATHM |
R |
@@ -657,6 +671,20 @@ below.
|
+
+ | MDEL |
+ R/W |
+ Monitor Deadband |
+ DOUBLE |
+ Deadband on RBV valve monitor |
+
+
+ | MLST |
+ R |
+ Last Valve Monitored |
+ DOUBLE |
+ Last RBV value to be value monitored |
+
| MIP |
R |
@@ -2556,6 +2584,38 @@ below.
+
+ | ADEL |
+ R/W |
+ Archive Deadband |
+ DOUBLE |
+ An archive value is only posted if RBV moves out of the ADEL deadband when
+ compared to the previous value archived. ie. if ((RBV-ALST)>ADEL). ADEL defaults to zero,
+ which would mean that all changes to RBV are archived. |
+
+
+ | MDEL |
+ R/W |
+ Monitor Deadband |
+ DOUBLE |
+ An monitor value is only posted if RBV moves out of the MDEL deadband when
+ compared to the previous value posted. ie. if ((RBV-MLST)>MDEL). MDEL defaults to zero,
+ which would mean that all value changes to RBV are posted. |
+
+
+ | ALST |
+ R |
+ Last Value Archived |
+ DOUBLE |
+ Holds the last RBV to be archived. Used to determine if the current RBV is within an ADEL deadband. |
+
+
+ | MLST |
+ R |
+ Last Value Monitored |
+ DOUBLE |
+ Holds the last RBV to be posted. Used to determine if the current RBV is within a MDEL deadband. |
+