Index: shared/scripts/configuration/config.py =================================================================== diff -u -ra5da4d62892a9f9d464b6550c84e0d1672353ec7 -r27243911dd859b5a1b97d69637e108763f955cd4 --- shared/scripts/configuration/config.py (.../config.py) (revision a5da4d62892a9f9d464b6550c84e0d1672353ec7) +++ shared/scripts/configuration/config.py (.../config.py) (revision 27243911dd859b5a1b97d69637e108763f955cd4) @@ -14,6 +14,7 @@ ############################################################################ import os +from dialin.dialin.common import alarm_priorities AUT_NAME = "denaliSquish" @@ -312,4 +313,10 @@ 287: "HD processor clock speed checks against FPGA clock failure.", 288: "DG trimmer heater on with flow timeout.", 289: "Total number of alarms.", - } \ No newline at end of file + } + +ALARM_PRIORITY_NONE = 0 # Indicates not an alarm or no alarms active at this time +ALARM_PRIORITY_LOW = 1 # Low priority alarm +ALARM_PRIORITY_MEDIUM = 2 # Medium priority alarm +ALARM_PRIORITY_HIGH = 3 # High priority alarm +NUM_OF_ALARM_PRIORITIES = 4 # Total number of alarm priorities \ No newline at end of file