EfemCommand.cs 740 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace athosRT.Devices.EFEM
  7. {
  8. public enum EfemCommand
  9. {
  10. READY,
  11. INIT,
  12. ORGSH,
  13. LOCK,
  14. UNLOCK,
  15. DOCK,
  16. UNDOCK,
  17. OPEN,
  18. CLOSE,
  19. WAFSH,
  20. MAPDT,
  21. LOAD,
  22. UNLOAD,
  23. GOTO,
  24. TRANS,
  25. CHANGE,
  26. MPNT,
  27. ALIGN,
  28. ALIGN2,
  29. LIFT,
  30. HOME,
  31. HOLD,
  32. RESTR,
  33. ABORT,
  34. EMS,
  35. ERROR,
  36. CLAMP,
  37. STATE,
  38. MODE,
  39. TRANSREQ,
  40. SIGOUT,
  41. SIGSTAT,
  42. EVENT,
  43. CSTID,
  44. USDEFINE,
  45. THICKNESS,
  46. }
  47. }