public bool CheckTxPowerLowAlarm(DUT dut) { txPowerLA = dut.ChkTxpLA(); Thread.Sleep(50); txPowerLA = dut.ChkTxpLA(); return !txPowerLA; }
public bool CheckTxPowerLowAlarm(DUT dut) { bool isAlarm = false; isAlarm = dut.ChkTxpLA(); Thread.Sleep(1000); isAlarm = dut.ChkTxpLA(); return(isAlarm); }