buffer in/out 시퀀스 작성중

This commit is contained in:
backuppc
2025-12-11 08:22:52 +09:00
parent 9a0a389e07
commit 6024f372d3
23 changed files with 671 additions and 806 deletions

View File

@@ -75,13 +75,13 @@ namespace Project.StateMachine
/// <summary>
/// 상차이동
/// </summary>
GOUP,
BUFFER_OUT,
/// <summary>
/// 하차이동
/// </summary>
GODOWN,
BUFFER_IN,
@@ -100,6 +100,10 @@ namespace Project.StateMachine
/// </summary>
MARKSTROPB,
/// <summary>
/// 에러발생
/// </summary>
ERROR,
}

View File

@@ -283,6 +283,8 @@ namespace Project.StateMachine
private int _runStepSeq = 0;
public int RunStepSeq { get { return _runStepSeq; } }
public Stack<ERunStep> BackupRunStep = new Stack<ERunStep>();
private DateTime runStepStartTime = DateTime.Parse("1982-11-23");
private ERunStep _runstepn = ERunStep.READY;
private ERunStep _runstepo = ERunStep.READY;