SMIFEntity.cs 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. using Aitex.Core.RT.Fsm;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Venus_RT.Devices.SMIF
  8. {
  9. /// <summary>
  10. /// SMIF主要功能 用于自动化的Cassette传送
  11. /// 主要功能包括Load Unload HOME等
  12. /// </summary>
  13. public class SMIFEntity : Entity, IModuleEntity
  14. {
  15. public bool IsInit => throw new NotImplementedException();
  16. public bool IsBusy => throw new NotImplementedException();
  17. public bool IsIdle => throw new NotImplementedException();
  18. public bool IsError => throw new NotImplementedException();
  19. public SMIFEntity()
  20. {
  21. }
  22. public bool Check(int msg, out string reason, params object[] args)
  23. {
  24. throw new NotImplementedException();
  25. }
  26. public bool CheckAcked(int msg)
  27. {
  28. throw new NotImplementedException();
  29. }
  30. public int Invoke(string function, params object[] args)
  31. {
  32. throw new NotImplementedException();
  33. }
  34. }
  35. }