|
@@ -234,7 +234,7 @@ namespace Venus_RT.Modules.PMs
|
|
|
public bool LiftPinIsDown => _chamber.LiftPinIsDown;
|
|
|
public bool LiftPinIsUp => _chamber.LiftPinIsUp;
|
|
|
public double ChamberPressure => _chamber.ChamberPressure;
|
|
|
-
|
|
|
+ public double ProcessPressure => _chamber.ProcessPressure;
|
|
|
public bool IsVac => _chamber.IsVAC;
|
|
|
public bool IsAtm => _chamber.IsATM;
|
|
|
|
|
@@ -1370,7 +1370,7 @@ namespace Venus_RT.Modules.PMs
|
|
|
|
|
|
private bool FnStartMFCVerification(object[] param)
|
|
|
{
|
|
|
- _gasVerificationRoutine.Init((string)param[0], Convert.ToDouble(param[1]), (int)param[2]);
|
|
|
+ _gasVerificationRoutine.Init((string[])param[0], Convert.ToDouble(param[1]), (int)param[2]);
|
|
|
return _gasVerificationRoutine.Start(param) == RState.Running;
|
|
|
}
|
|
|
|