BrooksSMIFEventEnum.cs 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace MECF.Framework.RT.EquipmentLibrary.HardwareUnits.SMIFs.Brooks
  7. {
  8. enum BrooksSMIFEventEnum
  9. {
  10. PodRemoved = 1,
  11. PodArrived = 2,
  12. AutoMode = 3,
  13. ManualMode = 4,
  14. PowerUp = 5,
  15. GotoStagePos = 9,
  16. ReachHome = 18,
  17. AbortHome = 20,
  18. ExitHome = 21,
  19. CompleteLock = 31,
  20. CompleteUnlock = 32,
  21. AbortLock = 33,
  22. AbortUnlock = 34,
  23. CompleteCalibration = 49,
  24. AbortCal = 50,
  25. ReachStage = 53,
  26. AbortStage = 54,
  27. ReachPosition = 55,
  28. AbortPos = 56,
  29. CompleteMap = 57,
  30. CompleteOpenGrip = 81,
  31. AbortOpenGrip = 82,
  32. CompleteCloseGrip = 83,
  33. AbortCloseGrip = 84,
  34. BeginFetch = 85,
  35. CompleteFetch = 86,
  36. AbortFetch = 87,
  37. BeginLoad = 88,
  38. CompleteLoad = 89,
  39. AbortLoad = 90,
  40. BeginHome = 91,
  41. BeginOpen = 92,
  42. CompleteOpen = 93,
  43. AbortOpen = 94,
  44. BeginReceiveCassette = 95,
  45. AbortReceiveCassette = 97,
  46. BeginUnload = 98,
  47. CompleteUnload = 99,
  48. AbortUnload = 100,
  49. CassetteArrived = 101,
  50. CassetteRemoved = 102,
  51. CompleteErrorHome = 103,
  52. CompleteErrorLoad = 104,
  53. CompleteErrorUnload = 105,
  54. BeginErrorHome = 106,
  55. AbortErrorHome = 107,
  56. BeginErrorLoad = 108,
  57. AbortErrorLoad = 109,
  58. BeginErrorUnload = 110,
  59. AbortErrorUnload = 111,
  60. AbortLockLatch = 143,
  61. AbortUnlockLatch = 145,
  62. }
  63. }