Browse Source

Fix the ATM cycle blocking bug.

sangwq 1 year ago
parent
commit
1ff7394c30
1 changed files with 8 additions and 0 deletions
  1. 8 0
      Venus/Venus_RT/Modules/SystemDispatcher.cs

+ 8 - 0
Venus/Venus_RT/Modules/SystemDispatcher.cs

@@ -486,6 +486,14 @@ namespace Venus_RT.Modules
                             Status = ModuleStatus.Idle; 
                         }
                         break;
+                    case ModuleStatus.StartProcess:
+                        {
+                            if(RouteManager.IsATMMode)
+                            {
+                                Status = ModuleStatus.Processing;
+                            }
+                        }
+                        break;
                 }
             }
             else