清料时增加当处于手动模式时流程暂停

develop
lhiven 10 months ago
parent c1e0d4b7b7
commit ac96c9c808

@ -50,6 +50,11 @@ namespace Rs.MotionPlat.Flow.SubFlow
Task.Run(() => {
while (run)
{
if (MachineManage.Instance.RunMode == ERunMode.Manual)
{
Thread.Sleep(10);
continue;
}
switch (step)
{
case ECleanOutFlowStep.:

Loading…
Cancel
Save