Esempio n. 1
0
 public bool CheckTxPowerHighWarning(DUT dut)
 {
     
     txPowerHW = dut.ChkTxpHW();
     Thread.Sleep(50);
     txPowerHW = dut.ChkTxpHW();
     return !txPowerHW;
 }
Esempio n. 2
0
        public bool CheckTxPowerHighWarning(DUT dut)
        {
            bool isWarning = false;

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