IAxisInterLock.cs 461 B

1234567891011121314151617181920
  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.AXIS
  7. {
  8. public interface IAxisInterLock
  9. {
  10. string Module { get; }
  11. /// <summary>
  12. /// GotoPosition条件检验
  13. /// </summary>
  14. /// <param name="station"></param>
  15. /// <returns></returns>
  16. bool CheckGotoPosition(string station);
  17. }
  18. }