BufferStation.cs 950 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using Aitex.Core.RT.Device;
  7. using MECF.Framework.Common.SubstrateTrackings;
  8. namespace MECF.Framework.RT.EquipmentLibrary.HardwareUnits.BufferStations
  9. {
  10. public class BufferStation : BaseDevice, IDevice
  11. {
  12. public BufferStation(string module, string name )
  13. {
  14. Module = module;
  15. Name = name;
  16. WaferManager.Instance.SubscribeLocation(name, 6);
  17. }
  18. public bool Initialize()
  19. {
  20. return true;
  21. }
  22. public void Monitor()
  23. {
  24. }
  25. public void Terminate()
  26. {
  27. }
  28. public void Reset()
  29. {
  30. }
  31. public bool IsEnableTransferWafer(out string reason)
  32. {
  33. reason = "";
  34. return true;
  35. }
  36. }
  37. }