SumWayRobotErrorCode.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace CyberX8_RT.Devices.EFEM
  7. {
  8. public class SumWayRobotErrorCode
  9. {
  10. public static Dictionary<string, string> ErrorCodeDescription = new Dictionary<string, string>()
  11. {
  12. {"105","Invalid command format." },
  13. {"221","Wrong ARM Parameter." },
  14. {"223","Extend Signal disable." },
  15. {"304","Unkown ErrorCode." },
  16. {"305","Unkown command." },
  17. {"309","Unsupported command." },
  18. {"400","Pressure signal error." },
  19. {"401","ZWAFER parameter error." },
  20. {"402","Invalid slot parameter." },
  21. {"403","Motion commamd RX parameter error." },
  22. {"404","Wafer pick failed." },
  23. {"405","Wafer place failed." },
  24. {"406","Cylinder pressure detect failed." },
  25. {"407","Mapping sensor extend failed." },
  26. {"408","Mapping sensor retract failed." },
  27. {"409","Invalid mapping sensor location data." },
  28. {"411","Invalid mapping sensor height." }
  29. };
  30. }
  31. }