Ejemplo n.º 1
0
 protected bool CheckVccHighWarning(DUT dut)
 {
     vccHW = dut.ChkVccHW();
     Thread.Sleep(50);
     vccHW = dut.ChkVccHW();
     return !vccHW;
 }
Ejemplo n.º 2
0
        protected bool CheckVccHighWarning(DUT dut)
        {
            bool isWarning = false;

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