Esempio n. 1
0
 protected bool CheckTxPowerLowWarning(DUT dut)
 {
     txPowerLW = dut.ChkTxpLW();
     Thread.Sleep(50);
     txPowerLW = dut.ChkTxpLW();
     return !txPowerLW;
 }
Esempio n. 2
0
        protected bool CheckTxPowerLowWarning(DUT dut)
        {
            bool isWarning = false;

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