Index: AlarmDefs.h =================================================================== diff -u -r7290aebde28f67fcee4f2c1d6d0c77b5abc6dc5e -r12fbc8a7b226730a5aa92ed2bc6725aeb728e6de --- AlarmDefs.h (.../AlarmDefs.h) (revision 7290aebde28f67fcee4f2c1d6d0c77b5abc6dc5e) +++ AlarmDefs.h (.../AlarmDefs.h) (revision 12fbc8a7b226730a5aa92ed2bc6725aeb728e6de) @@ -51,6 +51,7 @@ ALARM_ID_HD_BLOOD_FLOW_INVALID_CALIBRATION, ///< HD blood flow invalid calibration ALARM_ID_HD_DIALYSATE_FLOW_INVALID_CALIBRATION, ///< HD dialysate flow invalid calibration ALARM_ID_HD_ALARM_AUDIO_SELF_TEST_FAILURE, ///< HD alarm audio failed POST + ALARM_ID_HD_UI_POST_FAILED, ///< HD UI POST failed ALARM_ID_HD_SOFTWARE_FAULT, ///< HD Software fault. Software found itself in an unexpected state ALARM_ID_BLOOD_PUMP_MC_CURRENT_CHECK, ///< Blood pump failed motor controller current check. Too high when pump should be off or out of range when pump should be running ALARM_ID_BLOOD_PUMP_OFF_CHECK, ///< Blood pump failed motor off check. Measured speed while commanded off @@ -395,6 +396,7 @@ { ALARM_PRIORITY_HIGH, 1, TRUE , FALSE, TRUE , TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, FALSE, ALARM_ID_HD_BLOOD_FLOW_INVALID_CALIBRATION, 0, ALARM_ID_NO_ALARM }, { ALARM_PRIORITY_HIGH, 1, TRUE , FALSE, TRUE , TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, FALSE, ALARM_ID_HD_DIALYSATE_FLOW_INVALID_CALIBRATION, 0, ALARM_ID_NO_ALARM }, { ALARM_PRIORITY_HIGH, 1, TRUE , FALSE, TRUE , TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, FALSE, ALARM_ID_HD_ALARM_AUDIO_SELF_TEST_FAILURE, 0, ALARM_ID_NO_ALARM }, + { ALARM_PRIORITY_HIGH, 1, TRUE , FALSE, TRUE , TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, FALSE, ALARM_ID_HD_UI_POST_FAILED, 0, ALARM_ID_NO_ALARM }, // Machine fault high priority alarms { ALARM_PRIORITY_HIGH, 3, TRUE , FALSE, TRUE , TRUE , TRUE , TRUE , TRUE , TRUE , TRUE , TRUE , FALSE, ALARM_ID_HD_SOFTWARE_FAULT, 0, ALARM_ID_NO_ALARM }, Index: HDDefs.h =================================================================== diff -u -r7290aebde28f67fcee4f2c1d6d0c77b5abc6dc5e -r12fbc8a7b226730a5aa92ed2bc6725aeb728e6de --- HDDefs.h (.../HDDefs.h) (revision 7290aebde28f67fcee4f2c1d6d0c77b5abc6dc5e) +++ HDDefs.h (.../HDDefs.h) (revision 12fbc8a7b226730a5aa92ed2bc6725aeb728e6de) @@ -52,7 +52,6 @@ enum HD_POST_States { POST_STATE_START = 0, ///< Start initialize & POST mode state - POST_STATE_FW_COMPATIBILITY, ///< Run firmware compatibility test state POST_STATE_FW_INTEGRITY, ///< Run firmware integrity test state POST_STATE_BATTERY, ///< Run battery SOC test state POST_STATE_WATCHDOG, ///< Run watchdog test state @@ -65,6 +64,8 @@ POST_STATE_ALARM_LAMP, ///< Run alarm lamp test state POST_STATE_ACCELEROMETER, ///< Run Accelerometer test state POST_STATE_STUCK_BUTTON, ///< Run stuck button test state + POST_STATE_UI_POST, ///< Check whether UI passed its POST tests + POST_STATE_FW_COMPATIBILITY, ///< Run firmware compatibility test state POST_STATE_FPGA, ///< Run FPGA test state POST_STATE_COMPLETED, ///< POST self-tests completed state POST_STATE_FAILED, ///< POST self-tests failed state