Browse Source

revise sequence recipe and srd facility check not

chenzk 2 days ago
parent
commit
4dd2120614

+ 3 - 5
Framework/Common/RecipeCenter/RecipeType.cs

@@ -27,11 +27,9 @@ namespace MECF.Framework.Common.RecipeCenter
         VPW,
         [Description("Deposition Recipe")]
         DEP,
-        [Description("Rinse Recipe")]
-        QDR,
-        [Description("High Velocity Dryer Recipe")]
-        HVD,
         [Description("Srd Recipe")]
-        SRD
+        SRD,
+        [Description("Dummy Rinse Recipe")]
+        DQDR
     }
 }

+ 1 - 1
PunkHPX8_RT/Modules/SRD/SRDInitializeRoutine.cs

@@ -77,7 +77,7 @@ namespace PunkHPX8_RT.Modules.Transporter
             var result = systemFacilities.CheckCDAN2();
             if (!result.result)
             {
-                LOG.WriteLog(eEvent.ERR_SRD, Module, $"CDA or N2 is not enabled");
+                LOG.WriteLog(eEvent.ERR_SRD, Module, $"{result.reason}");
                 return false;
             }
             return true;