RtState.cs 737 B

12345678910111213141516171819202122232425262728293031323334353637
  1. 
  2. namespace athosCore
  3. {
  4. public enum RtState
  5. {
  6. Init = 0,
  7. Initializing = 1,
  8. Idle = 2,
  9. ManualTransfer = 3,
  10. Transfer = 4,
  11. Cycle = 5,
  12. PrepareCycle = 6,
  13. PostCycle = 7,
  14. SetSpeed = 8,
  15. Error = 9,
  16. Reset = 10,
  17. Processing = 11,
  18. PostProcess = 12,
  19. PauseProcess = 13,
  20. Maintenance = 14,
  21. WaferMapping = 15,
  22. OpenDoor = 16,
  23. CloseDoor = 17,
  24. HomeRobot = 18,
  25. PickFromLL = 19,
  26. PlaceToLL = 20,
  27. Picking = 21,
  28. Placing = 22,
  29. Goto = 23,
  30. Swaping = 24,
  31. AlignerHoming = 25,
  32. PickingPM = 26,
  33. PlacingPM = 27,
  34. Align = 28,
  35. }
  36. }