public bool CheckTxPowerHighWarning(DUT dut) { txPowerHW = dut.ChkTxpHW(); Thread.Sleep(50); txPowerHW = dut.ChkTxpHW(); return !txPowerHW; }
public bool CheckTxPowerHighWarning(DUT dut) { bool isWarning = false; isWarning = dut.ChkTxpHW(); Thread.Sleep(1000); isWarning = dut.ChkTxpHW(); return(isWarning); }