Bugs in sequences fixed: Missing CheckUiOp

This commit is contained in:
Milan Hanajik 2014-09-26 17:48:55 +02:00
parent 26620f1fd1
commit 1c34946a6b
7 changed files with 20 additions and 24 deletions

View File

@ -16,8 +16,9 @@ namespace TBF.BenchControl.TestMethods.CameraRoiDetection
{
Elde.ControlBoardDev cBrd = StateMachine.ControlBoard;
IList<Event> e; /// Events from currently running operations
IList<Event> e = new List<Event>(); /// Events from currently running operations
Event retVal = Event.Done;
checkUiOp = new Operations.CheckUIOp(true); /// Runs in more then one state
processDataLoggingOp = null;

View File

@ -30,8 +30,9 @@ namespace TBF.BenchControl.TestMethods.CombinedMeters
/// Specific for combined meters
int[] lastWMPulses = new int[Program.WMsCount];
IList<Event> e; /// Events from currently running operations
Event retVal = Event.Done;
IList<Event> e = new List<Event>(); /// Events from currently running operations
Event retVal = Event.Done;
checkUiOp = new Operations.CheckUIOp(true); /// Runs in more then one state
ltrPerRefPulse = outPath.FlowMeter.LtrPerPulse; /// [ltr/pulse], nominal flow in [m3/h]

View File

@ -22,7 +22,9 @@ namespace TBF.BenchControl.TestMethods.CombinedWithDetection
/// Specific for combined meters
int[] lastWMPulses = new int[Program.WMsCount];
IList<Event> e; /// Events from currently running operations
IList<Event> e = new List<Event>(); /// Events from currently running operations
Event retVal = Event.Done;
checkUiOp = new Operations.CheckUIOp(true); /// Runs in more then one state
//--------------------------------
State.Create("CombinedWithDetection : stop diverter gate etc")

View File

@ -27,11 +27,9 @@ namespace TBF.BenchControl.TestMethods.FixedStartMassCollection
{
Elde.ControlBoardDev cBrd = StateMachine.ControlBoard;
/// Operations running in more then one state
checkUiOp = new Operations.CheckUIOp(true);
IList<Event> e; /// Events from currently running operations
Event retVal = Event.Done;
IList<Event> e = new List<Event>(); /// Events from currently running operations
Event retVal = Event.Done;
checkUiOp = new Operations.CheckUIOp(true); /// Runs in more then one state
ltrPerRefPulse = outPath.FlowMeter.LtrPerPulse; /// [ltr/pulse], nominal flow in [m3/h]

View File

@ -27,11 +27,9 @@ namespace TBF.BenchControl.TestMethods.FlyingStart
{
Elde.ControlBoardDev cBrd = StateMachine.ControlBoard;
/// Operations running in more then one state
checkUiOp = new Operations.CheckUIOp(true);
IList<Event> e; /// Events from currently running operations
Event retVal = Event.Done;
IList<Event> e = new List<Event>(); /// Events from currently running operations
Event retVal = Event.Done;
checkUiOp = new Operations.CheckUIOp(true); /// Runs in more then one state
ltrPerRefPulse = outPath.FlowMeter.LtrPerPulse; /// [ltr/pulse], nominal flow in [m3/h]

View File

@ -27,11 +27,9 @@ namespace TBF.BenchControl.TestMethods.FlyingStartCollectionMethod
{
Elde.ControlBoardDev cBrd = StateMachine.ControlBoard;
/// Operations running in more then one state
checkUiOp = new Operations.CheckUIOp(true);
IList<Event> e; /// Events from currently running operations
Event retVal = Event.Done;
IList<Event> e = new List<Event>(); /// Events from currently running operations
Event retVal = Event.Done;
checkUiOp = new Operations.CheckUIOp(true); /// Runs in more then one state
ltrPerRefPulse = outPath.FlowMeter.LtrPerPulse; /// [ltr/pulse], nominal flow in [m3/h]

View File

@ -27,11 +27,9 @@ namespace TBF.BenchControl.TestMethods.ReferenceFlowmeterCalibration
{
Elde.ControlBoardDev cBrd = StateMachine.ControlBoard;
/// Operations running in more then one state
checkUiOp = new Operations.CheckUIOp(true);
IList<Event> e; /// Events from currently running operations
Event retVal = Event.Done;
IList<Event> e = new List<Event>(); /// Events from currently running operations
Event retVal = Event.Done;
checkUiOp = new Operations.CheckUIOp(true); /// Runs in more then one state
ltrPerRefPulse = outPath.FlowMeter.LtrPerPulse; /// [ltr/pulse], nominal flow in [m3/h]