Esempio n. 1
0
 // temp A&W     
 public bool CheckTempHighAlarm(DUT dut)
 { 
     tempHA = dut.ChkTempHA();
     Thread.Sleep(50);
     tempHA = dut.ChkTempHA();
     return !tempHA;
 }
Esempio n. 2
0
        // temp A&W
        public bool CheckTempHighAlarm(DUT dut)
        {
            bool isAlarm = false;

            isAlarm = dut.ChkTempHA();
            Thread.Sleep(1000);
            isAlarm = dut.ChkTempHA();
            return(isAlarm);
        }