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

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