Esempio n. 1
0
 // txpower A&W       
 protected bool CheckTxPowerHighAlarm(DUT dut)
 {
     txPowerHA = dut.ChkTxpHA();
     Thread.Sleep(50);
     txPowerHA = dut.ChkTxpHA();
     return !txPowerHA;
 }
Esempio n. 2
0
        // txpower A&W
        protected bool CheckTxPowerHighAlarm(DUT dut)
        {
            bool isAlarm = false;

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