경로역방향 발생시 프로그램 통신 죽는 현상 수정

This commit is contained in:
chi
2025-06-26 15:34:46 +09:00
parent f1aeeeba12
commit 02e71d7446
8 changed files with 655 additions and 588 deletions

View File

@@ -5,7 +5,7 @@ namespace AGVControl
public class AGVActionPrediction
{
public Direction Direction { get; set; }
public uint? NextRFID { get; set; }
public RFIDPoint NextRFID { get; set; }
public string Reason { get; set; }
public AGVActionReasonCode ReasonCode { get; set; }
public AGVMoveState MoveState { get; set; } // RUN 또는 STOP

View File

@@ -26,5 +26,6 @@ namespace AGVControl
PathCalcError,
NoDirection,
MoveForTurn,
busy,
}
}