ErrorCode.cs 2.0 KB

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