Esempio n. 1
0
 public bool CheckTxPowerLowAlarm(DUT dut)
 {
     txPowerLA = dut.ChkTxpLA();
     Thread.Sleep(50);
     txPowerLA = dut.ChkTxpLA();
     return !txPowerLA;
 }
Esempio n. 2
0
        public bool CheckTxPowerLowAlarm(DUT dut)
        {
            bool isAlarm = false;

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