|
@@ -196,7 +196,7 @@ namespace FurnaceRT.Equipments.PMs
|
|
|
private SerializableDictionary<string, bool> _conditionCheckDic = new SerializableDictionary<string, bool>();
|
|
|
private Dictionary<string, string> _conditionCheckItemDic = new Dictionary<string, string>();
|
|
|
private Stopwatch _waitTimer = new Stopwatch();
|
|
|
- public string StringProcessFlowState { get; set; }
|
|
|
+ public string StringProcessFlowState { get; set; } = ProcessFlowState.Standby.ToString();
|
|
|
|
|
|
public bool IsExcuteRoutineFailed { get; set; }
|
|
|
|
|
@@ -392,7 +392,7 @@ namespace FurnaceRT.Equipments.PMs
|
|
|
{
|
|
|
foreach (var item in mfcs)
|
|
|
{
|
|
|
- if (item==null) continue;
|
|
|
+ if (item == null) continue;
|
|
|
if (item.IsMFCInstalled)
|
|
|
{
|
|
|
aITMfcDataList.Add(item.DeviceData);
|
|
@@ -1207,7 +1207,7 @@ namespace FurnaceRT.Equipments.PMs
|
|
|
!RecipeParser.Parse(recipeName, ModuleName.PM1.ToString(), out var recipeHead, out var recipeSteps, out reason, "Abort"))
|
|
|
{
|
|
|
recipeName = SC.GetStringValue("System.Recipe.Abort Recipe");
|
|
|
- if (!File.Exists($"{PathManager.GetRecipeDir()}\\{SC.GetStringValue("System.Recipe.SupportedChamberType")}\\Abort\\{recipeName}.rcp") ||
|
|
|
+ if (!File.Exists($"{PathManager.GetRecipeDir()}\\{SC.GetStringValue("System.Recipe.SupportedChamberType")}\\Abort\\{recipeName}.rcp") ||
|
|
|
!RecipeParser.Parse(SC.GetStringValue("System.Recipe.Abort Recipe"), ModuleName.PM1.ToString(), out recipeHead, out recipeSteps, out reason, "Abort"))
|
|
|
{
|
|
|
PostMsg(MSG.Error);
|
|
@@ -1547,7 +1547,7 @@ namespace FurnaceRT.Equipments.PMs
|
|
|
}
|
|
|
private double GetWaitTime()
|
|
|
{
|
|
|
- if (StringFsmStatus=="Idle")
|
|
|
+ if (StringFsmStatus == "Idle")
|
|
|
{
|
|
|
_waitTimer.Reset();
|
|
|
}
|