GalilAxisConfig.cs 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Xml.Schema;
  7. using System.Xml.Serialization;
  8. namespace MECF.Framework.Common.Device.Galil
  9. {
  10. public class GalilAxisConfig
  11. {
  12. [XmlAttribute(AttributeName = "Name", Form = XmlSchemaForm.Unqualified, DataType = "string")]
  13. public string Name { get; set; }
  14. [XmlAttribute(AttributeName = "Index", Form = XmlSchemaForm.Unqualified, DataType = "int")]
  15. public int Index { get; set; }
  16. [XmlAttribute(AttributeName = "Type", Form = XmlSchemaForm.Unqualified, DataType = "string")]
  17. public string Type { get; set; }
  18. public int Speed { get; set; }
  19. public int Acceleration { get; set; }
  20. public int Deceleration { get; set; }
  21. public int HomingSpeed { get; set; }
  22. public int HomingOffset { get; set; }
  23. public int HomingTimeOut { get; set; }
  24. public int HomingAcceleration { get; set; }
  25. public int HomingDeceleration { get; set; }
  26. public int ReverseSoftwareLimit { get; set; }
  27. public int ForwardSoftwareLimit { get; set; }
  28. public int NegativeTorqueLimit { get; set; }
  29. public int PositiveTorqueLimit { get; set; }
  30. }
  31. }