添加工艺前等待温度提示

This commit is contained in:
hanqiangqiang 2026-08-25 16:15:33 +08:00
parent cab224c9f9
commit 5e03c09817

View File

@ -482,7 +482,7 @@ namespace SicModules.PMs.RecipeExecutions
/// </summary>
protected void WaitTempratureToBeginProcess(int id,double targetTemp,int timeout)
{
string reason = String.Empty;
string reason = $"Wait targetTemp reaches {targetTemp}℃ begin process, with timeout period of {timeout} seconds.";
Tuple<bool, Result> ret = Wait(id, () =>
{
if (PmDevice.TC1.L2PVFeedBack >= targetTemp)