|
@@ -377,7 +377,7 @@ namespace Venus_RT.Modules
|
|
|
|
|
|
private bool FnStartPrepareTM(object[] param)
|
|
|
{
|
|
|
- if (Singleton<RouteManager>.Instance.IsATMMode)
|
|
|
+ if (RouteManager.IsATMMode)
|
|
|
return true;
|
|
|
|
|
|
return _pumpingRoutine.Start() == RState.Running;
|
|
@@ -385,7 +385,7 @@ namespace Venus_RT.Modules
|
|
|
|
|
|
private bool FnPreparaTMTimeout(object[] param)
|
|
|
{
|
|
|
- if (Singleton<RouteManager>.Instance.IsATMMode)
|
|
|
+ if (RouteManager.IsATMMode)
|
|
|
{
|
|
|
if (fsm.ElapsedTime > 10000)
|
|
|
{
|
|
@@ -416,7 +416,7 @@ namespace Venus_RT.Modules
|
|
|
|
|
|
private bool FnStartPrepareEFEM(object[] param)
|
|
|
{
|
|
|
- if (Singleton<RouteManager>.Instance.IsATMMode)
|
|
|
+ if (RouteManager.IsATMMode)
|
|
|
return true;
|
|
|
|
|
|
return _ventingRoutine.Start() == RState.Running;
|
|
@@ -424,7 +424,7 @@ namespace Venus_RT.Modules
|
|
|
|
|
|
private bool FnPrepareEFEMTimeout(object[] param)
|
|
|
{
|
|
|
- if (Singleton<RouteManager>.Instance.IsATMMode)
|
|
|
+ if (RouteManager.IsATMMode)
|
|
|
{
|
|
|
if (fsm.ElapsedTime > 10000)
|
|
|
{
|