ErrorCode.cs 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace EFEM.RT
  7. {
  8. public enum ErrorCodel
  9. {
  10. VAC, //Insufficient vacuum source pressure
  11. AIR, //Insufficient compressed air source pressure
  12. STALL, //Stall
  13. TIMEOUT, //Motion timeout
  14. LIMIT, //Limit error
  15. SENSOR, //Sensor abnormal
  16. POSITION, //Position error
  17. EMS, //Emergency stop
  18. COMM, //Communication error between controllers
  19. COMM2, //Communication error between modules
  20. VACON, //Chucking on error
  21. VACOFF, //Chucking off error
  22. CLAMPON, //Clamp on error Enabled
  23. CLAMPOF, //Clamp off error
  24. RRTWAF, //Wafer protrusion
  25. CRSWAF, //Cross wafer detection
  26. THICKWAF, //Abnormal thickness wafer detection (thick)
  27. THINWAF, //Abnormal thickness wafer detection (thin)
  28. DBLWAF, //Dual wafers detection
  29. BAOWAF, //Front bow wafer detection
  30. COMMAND, //Command error
  31. PODNG, //Pod abnormal load error
  32. PODMISMATCH, //Pod type mismatch
  33. VAC_S, //Chucking sensor abnormal
  34. CLAMP_S, //Clamp sensor abnormal
  35. SAFTY, //Hand/finger pinch sensor reaction
  36. LOCKNG, //FOUP lock
  37. UNLOCKNG, //FOUP unlock
  38. L_KEY_LK, //Latch key lock failure
  39. L_KEY_UL, //Latch key unlock failure
  40. MAP_S, //Mapping sensor abnormal
  41. MAP_S1, //Mapping sensor preparation
  42. MAP_S2, //Mapping sensor containing
  43. WAFLOST, //Wafer fall
  44. ALIGNNG, //Alignment failure
  45. DRIVER, //Driver abnormal
  46. DRPOWERDOWN, //Drive power off
  47. HARDWARE, //Hardware failure
  48. INTERNAL, //Internal error
  49. E84_TIMEOUTx, //E84 timeout
  50. E84_CS_VALID, //E84CS_0, CS_1, VALIDerror
  51. READFAIL, //Reading error
  52. UNDEFINITION, //Undefined error
  53. }
  54. }