protected bool CheckRxPowerHighWarning(DUT dut)
 {
     rxPowerHW = dut.ChkRxpHW();
     Thread.Sleep(50);
     rxPowerHW = dut.ChkRxpHW();
     return !rxPowerHW;
 }
        protected bool CheckRxPowerHighWarning(DUT dut)
        {
            bool isWarning = false;

            isWarning = dut.ChkRxpHW();
            Thread.Sleep(1000);
            isWarning = dut.ChkRxpHW();
            return(isWarning);
        }