Esempio n. 1
0
 protected bool CheckBiasHighWarning(DUT dut)
 {
     ibiasHW = dut.ChkBiasHW();
     Thread.Sleep(50);
     ibiasHW = dut.ChkBiasHW();
     return !ibiasHW;
 }
Esempio n. 2
0
        protected bool CheckBiasHighWarning(DUT dut)
        {
            bool isWarning = false;

            isWarning = dut.ChkBiasHW();
            Thread.Sleep(1000);
            isWarning = dut.ChkBiasHW();
            return(isWarning);
        }