using Aitex.Core.RT.Fsm; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Venus_RT.Devices.SMIF { /// /// SMIF主要功能 用于自动化的Cassette传送 /// 主要功能包括Load Unload HOME等 /// public class SMIFEntity : Entity, IModuleEntity { public bool IsInit => throw new NotImplementedException(); public bool IsBusy => throw new NotImplementedException(); public bool IsIdle => throw new NotImplementedException(); public bool IsError => throw new NotImplementedException(); public SMIFEntity() { } public bool Check(int msg, out string reason, params object[] args) { throw new NotImplementedException(); } public bool CheckAcked(int msg) { throw new NotImplementedException(); } public int Invoke(string function, params object[] args) { throw new NotImplementedException(); } } }