TMEntity.cs 33 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004
  1. using System;
  2. using System.Diagnostics;
  3. using System.Collections.Generic;
  4. using Aitex.Core.RT.Fsm;
  5. using Aitex.Core.RT.Log;
  6. using Aitex.Core.Util;
  7. using Venus_Core;
  8. using Aitex.Sorter.Common;
  9. using MECF.Framework.Common.Equipment;
  10. using MECF.Framework.Common.SubstrateTrackings;
  11. using Venus_RT.Devices;
  12. using Venus_RT.Modules.TM;
  13. using Aitex.Core.RT.DataCenter;
  14. using Aitex.Core.RT.OperationCenter;
  15. using MECF.Framework.Common.Schedulers;
  16. using MECF.Framework.Common.CommonData;
  17. using Aitex.Core.RT.Device;
  18. using System.Timers;
  19. using Aitex.Core.RT.SCCore;
  20. using Aitex.Core.Backend;
  21. using System.Windows.Controls;
  22. using MECF.Framework.Common.DataCenter;
  23. //using Venus_RT.Devices.VCE;
  24. using Venus_RT.Modules.PMs;
  25. using System.Reflection;
  26. namespace Venus_RT.Modules
  27. {
  28. class TMEntity : Entity, IModuleEntity
  29. {
  30. public enum STATE
  31. {
  32. Unknown,
  33. Init,
  34. Initializing,
  35. InitializingRB,
  36. Idle,
  37. Error,
  38. Pumping,
  39. Venting,
  40. Purging,
  41. Leakcheck,
  42. Picking,
  43. Placing,
  44. Swaping,
  45. PMPicking,
  46. PMPlacing,
  47. PMSwaping,
  48. Aligning,
  49. Mapping,
  50. Extending,
  51. Retracting,
  52. Swapping,
  53. Gotoing,
  54. ControllingPressure,
  55. PreparePick,
  56. PreparePlace,
  57. }
  58. public enum MSG
  59. {
  60. Home,
  61. RobotHome,
  62. Online,
  63. Offline,
  64. Pump,
  65. Vent,
  66. Purge,
  67. CyclePurge,
  68. LeakCheck,
  69. Pick,
  70. Place,
  71. Swap,
  72. Goto,
  73. DoublePick,
  74. DoublePlace,
  75. DoubleSwap,
  76. PMPick,
  77. PMPlace,
  78. PMSwap,
  79. Extend,
  80. Retract,
  81. TMCycle,
  82. ControlPressure,
  83. Error,
  84. Abort,
  85. AbortControlPressure,
  86. }
  87. public bool IsIdle
  88. {
  89. get { return fsm.State == (int)STATE.Idle; }
  90. }
  91. public bool IsError
  92. {
  93. get { return fsm.State == (int)STATE.Error; }
  94. }
  95. public bool IsInit
  96. {
  97. get { return fsm.State == (int)STATE.Unknown || fsm.State == (int)STATE.Init; }
  98. }
  99. public bool IsBusy
  100. {
  101. get { return !IsInit && !IsError && !IsIdle; }
  102. }
  103. public RState RobotStatus
  104. {
  105. get
  106. {
  107. if (_robot.Status != RState.Running)
  108. {
  109. if (_robotWatch.ElapsedMilliseconds < 100)
  110. return RState.Running;
  111. else
  112. return _robot.Status;
  113. }
  114. else
  115. return RState.Running;
  116. }
  117. }
  118. public bool IsLLSlitDoorClosed(ModuleName ll) => ll == ModuleName.LLA ? _tm.IsLLAESlitDoorClosed : _tm.IsLLBESlitDoorClosed;
  119. public bool IsLLSlitDoorOpen(ModuleName ll) => ll == ModuleName.LLA ? _tm.IsLLAESlitDoorOpen : _tm.IsLLBESlitDoorOpen;
  120. public bool IsOnline { get; internal set; }
  121. public bool IsTMVac => _tm.IsTMVac;
  122. public bool IsTMATM => _tm.IsTMATM;
  123. public double TMPressure { get { return _tm.ChamberPressure; } }
  124. private readonly JetTM _tm;
  125. private readonly ITransferRobot _robot;
  126. private readonly MFHomeRoutine _homeRoutine;
  127. private readonly MFPumpRoutine _pumpingRoutine;
  128. private readonly MFVentRoutine _ventingRoutine;
  129. private readonly MFLeakCheckRoutine _leakCheckRoutine;
  130. private readonly MFPurgeRoutine _purgeRoutine;
  131. private readonly MFPickRoutine _pickRoutine;
  132. private readonly MFPlaceRoutine _placeRoutine;
  133. private readonly MFSwapRoutine _swapRoutine;
  134. private readonly MFPMPickRoutine _pmPickRoutine;
  135. private readonly MFPMPlaceRoutine _pmPlaceRoutine;
  136. private readonly MFPMSwapRoutine _pmSwapRoutine;
  137. private readonly MFPMRetractRoutine _pmRetractRoutine;
  138. private readonly MFPMExtendRoutine _pmExtendRoutine;
  139. private readonly MFRotationRoutine _mFRotationRoutine;
  140. //private readonly MFControlPressureRoutine _tmControlPressureRoutine;
  141. private bool startControlPressureFlag = true;
  142. private bool stopControlPressureFlag = false;
  143. private Stopwatch _robotWatch = new Stopwatch();
  144. private R_TRIG _robotIdleTrigger = new R_TRIG();
  145. private int _controlPressureCheckPoint = 100;
  146. private int _controlPressureSetPoint = 90;
  147. private int _controlFlowSetPoint = 90;
  148. //private readonly Timer controlPressureTimer;
  149. //private bool _allPMSlitDoorClosed;
  150. private List<eEvent> stopEntityId = new List<eEvent>()
  151. {
  152. eEvent.ERR_TM_ROBOT,
  153. eEvent.ERR_TM,
  154. eEvent.ERR_TM_PLC_HEARTBEAT_FAIL
  155. };
  156. public TMEntity()
  157. {
  158. //_tm = Singleton<JetTM>.Instance;
  159. _tm = DEVICE.GetDevice<JetTM>("TM");
  160. _robot = new SIASUNRobot();
  161. _pickRoutine = new MFPickRoutine(_tm, _robot);
  162. _placeRoutine = new MFPlaceRoutine(_tm, _robot);
  163. _swapRoutine = new MFSwapRoutine(_tm, _robot);
  164. _pmPickRoutine = new MFPMPickRoutine(_tm, _robot);
  165. _pmPlaceRoutine = new MFPMPlaceRoutine(_tm, _robot);
  166. _pmSwapRoutine = new MFPMSwapRoutine(_tm, _robot);
  167. _pumpingRoutine = new MFPumpRoutine(_tm, ModuleName.TM);
  168. _homeRoutine = new MFHomeRoutine(_tm, _robot, _pumpingRoutine);
  169. _ventingRoutine = new MFVentRoutine(_tm, ModuleName.TM);
  170. _leakCheckRoutine = new MFLeakCheckRoutine(_tm, ModuleName.TM);
  171. _purgeRoutine = new MFPurgeRoutine(_tm, ModuleName.TM);
  172. _pmRetractRoutine = new MFPMRetractRoutine(_tm, _robot);
  173. _pmExtendRoutine = new MFPMExtendRoutine(_tm, _robot);
  174. _mFRotationRoutine=new MFRotationRoutine(_tm, _robot);
  175. //_tmControlPressureRoutine = new MFControlPressureRoutine(_tm, _pumpingRoutine);
  176. WaferManager.Instance.SubscribeLocation(ModuleName.TMRobot, 2);
  177. InitFsmMap();
  178. //controlPressureTimer = new Timer(50);
  179. //controlPressureTimer.Elapsed += ControlPressureTimer_Elapsed;
  180. if (RtInstance.ConfigType == ConfigType.Kepler2200)
  181. {
  182. LOG.ModuleErrorInterrupt += (tmname,id) => TMErrorInterrupt(tmname,id);
  183. }
  184. }
  185. private void TMErrorInterrupt(ModuleName pmname, eEvent eEventid)
  186. {
  187. if (pmname == ModuleName.TM && stopEntityId.Contains(eEventid)&& fsm.State!=(int)STATE.Error)
  188. {
  189. CheckToPostMessage((int)MSG.Error);
  190. }
  191. }
  192. protected override bool Init()
  193. {
  194. OP.Subscribe("TM.Home", (cmd, args) => CheckToPostMessage((int)MSG.Home, args));
  195. OP.Subscribe("TM.RobotHome", (cmd, args) => CheckToPostMessage((int)MSG.RobotHome, args));
  196. OP.Subscribe($"TM.{RtOperation.LLPick}", (cmd, args) => CheckToPostMessage((int)MSG.Pick, args));
  197. OP.Subscribe($"TM.{RtOperation.LLPlace}", (cmd, args) => CheckToPostMessage((int)MSG.Place, args));
  198. OP.Subscribe($"TM.{RtOperation.PMPick}", (cmd, args) => CheckToPostMessage((int)MSG.PMPick, args));
  199. OP.Subscribe($"TM.{RtOperation.PMPlace}", (cmd, args) => CheckToPostMessage((int)MSG.PMPlace, args));
  200. OP.Subscribe($"TM.{RtOperation.Extend}", (cmd, args) => CheckToPostMessage((int)MSG.Extend, args));
  201. OP.Subscribe($"TM.{RtOperation.Retract}", (cmd, args) => CheckToPostMessage((int)MSG.Retract, args));
  202. OP.Subscribe($"TM.{RtOperation.Goto}", (cmd, args) => CheckToPostMessage((int)MSG.Goto, args));
  203. OP.Subscribe($"TM.{RtOperation.Cycle}", (cmd, args) => CheckToPostMessage((int)MSG.Swap, args));
  204. //OP.Subscribe($"TM.{RtOperation.LLPlace}", (cmd, args) => CheckToPostMessage((int)MSG.Place, args));
  205. OP.Subscribe($"TM.{RtOperation.Pump}", (cmd, args) => CheckToPostMessage((int)MSG.Pump));
  206. OP.Subscribe($"TM.{RtOperation.Vent}", (cmd, args) => CheckToPostMessage((int)MSG.Vent));
  207. OP.Subscribe($"TM.{RtOperation.LeakCheck}", (cmd, args) => CheckToPostMessage((int)MSG.LeakCheck));
  208. OP.Subscribe($"TM.{RtOperation.Purge}", (cmd, args) => CheckToPostMessage((int)MSG.Purge));
  209. OP.Subscribe($"TM.{RtOperation.Abort}", (cmd, args) => CheckToPostMessage((int)MSG.Abort));
  210. OP.Subscribe($"TM.{RtOperation.Online}", (cmd, args) => CheckToPostMessage((int)MSG.Online));
  211. OP.Subscribe($"TM.{RtOperation.Offline}", (cmd, args) => CheckToPostMessage((int)MSG.Offline));
  212. OP.Subscribe($"TM.{RtOperation.ControlPressure}", (cmd, args) => CheckToPostMessage((int)MSG.ControlPressure));
  213. OP.Subscribe($"TM.{RtOperation.AbortControlPressure}", (cmd, args) => CheckToPostMessage((int)MSG.AbortControlPressure));
  214. DATA.Subscribe("TM.FsmState", () => (((STATE)fsm.State).ToString()), SubscriptionAttribute.FLAG.IgnoreSaveDB);
  215. DATA.Subscribe("TM.FsmPrevState", () => (((PMState)fsm.PrevState).ToString()), SubscriptionAttribute.FLAG.IgnoreSaveDB);
  216. DATA.Subscribe("TM.FsmLastMessage", () => (((MSG)fsm.LastMsg).ToString()), SubscriptionAttribute.FLAG.IgnoreSaveDB);
  217. DATA.Subscribe("TM.RobotMoveAction", () => _robot.TMRobotMoveInfo, SubscriptionAttribute.FLAG.IgnoreSaveDB);
  218. DATA.Subscribe("TM.RobotMoveAction.ArmTarget", () => _robot.TMRobotMoveInfo.ArmTarget.ToString(), SubscriptionAttribute.FLAG.IgnoreSaveDB);
  219. DATA.Subscribe("TM.RobotMoveAction.BladeTarget", () => _robot.TMRobotMoveInfo.BladeTarget, SubscriptionAttribute.FLAG.IgnoreSaveDB);
  220. DATA.Subscribe("TM.RobotMoveAction.RobotAction", () => _robot.TMRobotMoveInfo.Action.ToString(), SubscriptionAttribute.FLAG.IgnoreSaveDB);
  221. DATA.Subscribe("TM.IsOnline", () => IsOnline);
  222. DATA.Subscribe("TM.Home.StepNo", () => _homeRoutine.currentStepNo, SubscriptionAttribute.FLAG.IgnoreSaveDB);
  223. _robotWatch.Restart();
  224. return true;
  225. }
  226. private void InitFsmMap()
  227. {
  228. fsm = new StateMachine<TMEntity>("TM", (int)STATE.Init, 50);
  229. //AnyStateTransition(FSM_MSG.TIMER, fnMonitor, FSM_STATE.SAME);
  230. AnyStateTransition(MSG.Error, fnError, STATE.Error);
  231. AnyStateTransition(MSG.Online, fnOnline, FSM_STATE.SAME);
  232. AnyStateTransition(MSG.Offline,fnOffline, FSM_STATE.SAME);
  233. //AnyStateTransition(MSG.Home, fnHome, STATE.Initializing);
  234. Transition(STATE.Init, MSG.Home, fnHome, STATE.Initializing);
  235. Transition(STATE.Error, MSG.Home, fnHome, STATE.Initializing);
  236. Transition(STATE.Idle, MSG.Home, fnHome, STATE.Initializing);
  237. // Home
  238. Transition(STATE.Initializing, FSM_MSG.TIMER, fnHoming, STATE.Idle);
  239. Transition(STATE.Initializing, MSG.Abort, FnAbortHome, STATE.Idle);
  240. // Robot Home
  241. Transition(STATE.Idle, MSG.RobotHome, fnHome, STATE.InitializingRB);
  242. Transition(STATE.InitializingRB, FSM_MSG.TIMER, fnHoming, STATE.Idle);
  243. Transition(STATE.InitializingRB, MSG.Abort, FnAbortHome, STATE.Idle);
  244. //Transition(STATE.Idle, FSM_MSG.TIMER, fnMonitor, STATE.Idle);
  245. //Transition(STATE.Init, FSM_MSG.TIMER, fnMonitor, STATE.Init);
  246. // Vent sequence
  247. Transition(STATE.Idle, MSG.Vent, FnStartVent, STATE.Venting);
  248. Transition(STATE.Venting, FSM_MSG.TIMER, FnVentTimeout, STATE.Idle);
  249. Transition(STATE.Venting, MSG.Abort, FnAbortVent, STATE.Idle);
  250. // Pump sequence
  251. Transition(STATE.Idle, MSG.Pump, FnStartPump, STATE.Pumping);
  252. Transition(STATE.Pumping, FSM_MSG.TIMER, FnPumpTimeout, STATE.Idle);
  253. Transition(STATE.Pumping, MSG.Abort, FnAbortPump, STATE.Idle);
  254. // Purge sequence
  255. Transition(STATE.Idle, MSG.Purge, FnStartPurge, STATE.Purging);
  256. Transition(STATE.Purging, FSM_MSG.TIMER, FnPurgeTimeout, STATE.Idle);
  257. Transition(STATE.Purging, MSG.Abort, FnAbortPurge, STATE.Idle);
  258. // Leak check sequence
  259. Transition(STATE.Idle, MSG.LeakCheck, FnStartLeakCheck, STATE.Leakcheck);
  260. Transition(STATE.Leakcheck, FSM_MSG.TIMER, FnLeakCheckTimeout, STATE.Idle);
  261. Transition(STATE.Leakcheck, MSG.Abort, FnAbortLeakCheck, STATE.Idle);
  262. // Pick wafer from LL sequence
  263. Transition(STATE.Idle, MSG.Pick, FnStartPick, STATE.Picking);
  264. Transition(STATE.Picking, FSM_MSG.TIMER, FnPickTimeout, STATE.Idle);
  265. Transition(STATE.Picking, MSG.Abort, FnAbortPick, STATE.Idle);
  266. // Place wafer to LL sequence
  267. Transition(STATE.Idle, MSG.Place, FnStartPlace, STATE.Placing);
  268. Transition(STATE.Placing, FSM_MSG.TIMER, FnPlaceTimeout, STATE.Idle);
  269. Transition(STATE.Placing, MSG.Abort, FnAbortPlace, STATE.Idle);
  270. // Swap wafer with LL sequence
  271. Transition(STATE.Idle, MSG.Swap, FnStartSwap, STATE.Swaping);
  272. Transition(STATE.Swaping, FSM_MSG.TIMER, FnSwapTimeout, STATE.Idle);
  273. Transition(STATE.Swaping, MSG.Abort, FnAbortSwap, STATE.Idle);
  274. // Pick wafer from PM sequence
  275. Transition(STATE.Idle, MSG.PMPick, FnStartPMPick, STATE.PMPicking);
  276. Transition(STATE.PMPicking, FSM_MSG.TIMER, FnPMPickTimeout, STATE.Idle);
  277. Transition(STATE.PMPicking, MSG.Abort, FnAbortPMPick, STATE.Idle);
  278. // Place wafer to PM sequence
  279. Transition(STATE.Idle, MSG.PMPlace, FnStartPMPlace, STATE.PMPlacing);
  280. Transition(STATE.PMPlacing, FSM_MSG.TIMER, FnPMPlaceTimeout, STATE.Idle);
  281. Transition(STATE.PMPlacing, MSG.Abort, FnAbortPMPlace, STATE.Idle);
  282. // Swap wafer with PM sequence
  283. Transition(STATE.Idle, MSG.PMSwap, FnStartPMSwap, STATE.PMSwaping);
  284. Transition(STATE.PMSwaping, FSM_MSG.TIMER, FnPMSwapTimeout, STATE.Idle);
  285. Transition(STATE.PMSwaping, MSG.Abort, FnAbortPMSwap, STATE.Idle);
  286. //Retract
  287. Transition(STATE.Idle, MSG.Retract, FnStartRetract, STATE.Retracting);
  288. Transition(STATE.Retracting, FSM_MSG.TIMER, FnRetract, STATE.Idle);
  289. Transition(STATE.Retracting, MSG.Abort, FnAbortRetract, STATE.Idle);
  290. //Extend
  291. Transition(STATE.Idle, MSG.Extend, FnStartExtend, STATE.Extending);
  292. Transition(STATE.Extending, FSM_MSG.TIMER, FnExtend, STATE.Idle);
  293. Transition(STATE.Extending, MSG.Abort, FnAbortExtend, STATE.Idle);
  294. //Transition(RtState.Init, MSG.TMCycle, FsmStartTMCycle, RtState.TMCycle);
  295. //Transition(RtState.TMCycle, FSM_MSG.TIMER, FsmMonitorTMCycle, RtState.Idle);
  296. //Extend
  297. //Control Pressure
  298. AnyStateTransition(FSM_MSG.TIMER, ControlPressureTimer_Elapsed, FSM_STATE.SAME);
  299. Transition(STATE.Idle, MSG.Goto, FnStartGoto, STATE.Gotoing);
  300. Transition(STATE.Gotoing, FSM_MSG.TIMER, FnGoto, STATE.Idle);
  301. Transition(STATE.Gotoing, MSG.Abort, FnAbortGoto, STATE.Idle);
  302. Running = true;
  303. }
  304. private bool fnMonitor(object[] param)
  305. {
  306. _debugRoutine();
  307. return true;
  308. }
  309. private bool fnError(object[] param)
  310. {
  311. IsOnline = false;
  312. return true;
  313. }
  314. private bool fnOnline(object[] param)
  315. {
  316. //controlPressureTimer.Start();
  317. IsOnline = true;
  318. return true;
  319. }
  320. private bool fnOffline(object[] param)
  321. {
  322. //controlPressureTimer.Stop();
  323. IsOnline = false;
  324. return true;
  325. }
  326. private bool fnAbort(object[] param)
  327. {
  328. _robot.Halt();
  329. return true;
  330. }
  331. private bool fnHome(object[] param)
  332. {
  333. if (fsm.State == (int)STATE.Init && param.Length > 0)//带参home
  334. {
  335. return false;
  336. }
  337. else
  338. return _homeRoutine.Start(param) == RState.Running;
  339. }
  340. private bool fnHoming(object[] param)
  341. {
  342. RState ret = _homeRoutine.Monitor();
  343. if (ret == RState.Failed || ret == RState.Timeout)
  344. {
  345. PostMsg(MSG.Error);
  346. return false;
  347. }
  348. return ret == RState.End;
  349. }
  350. private bool FnStartVent(object[] param)
  351. {
  352. return _ventingRoutine.Start(false) == RState.Running;
  353. }
  354. private bool FnVentTimeout(object[] param)
  355. {
  356. RState ret = _ventingRoutine.Monitor();
  357. if (ret == RState.Failed || ret == RState.Timeout)
  358. {
  359. _ventingRoutine.Abort();
  360. PostMsg(MSG.Error);
  361. return false;
  362. }
  363. return ret == RState.End;
  364. }
  365. private bool FnAbortVent(object[] param)
  366. {
  367. _ventingRoutine.Abort();
  368. return true;
  369. }
  370. private bool FnStartPump(object[] param)
  371. {
  372. return _pumpingRoutine.Start() == RState.Running;
  373. }
  374. private bool FnPumpTimeout(object[] param)
  375. {
  376. RState ret = _pumpingRoutine.Monitor();
  377. if (ret == RState.Failed || ret == RState.Timeout)
  378. {
  379. _pumpingRoutine.Abort();
  380. PostMsg(MSG.Error);
  381. return false;
  382. }
  383. return ret == RState.End;
  384. }
  385. private bool FnAbortPump(object[] param)
  386. {
  387. _pumpingRoutine.Abort();
  388. return true;
  389. }
  390. private bool FnStartPurge(object[] param)
  391. {
  392. return _purgeRoutine.Start() == RState.Running;
  393. }
  394. private bool FnPurgeTimeout(object[] param)
  395. {
  396. RState ret = _purgeRoutine.Monitor();
  397. if (ret == RState.Failed || ret == RState.Timeout)
  398. {
  399. PostMsg(MSG.Error);
  400. return false;
  401. }
  402. return ret == RState.End;
  403. }
  404. private bool FnAbortPurge(object[] param)
  405. {
  406. _purgeRoutine.Abort();
  407. return true;
  408. }
  409. private bool FnStartLeakCheck(object[] param)
  410. {
  411. return _leakCheckRoutine.Start() == RState.Running;
  412. }
  413. private bool FnLeakCheckTimeout(object[] param)
  414. {
  415. RState ret = _leakCheckRoutine.Monitor();
  416. if (ret == RState.Failed || ret == RState.Timeout)
  417. {
  418. PostMsg(MSG.Error);
  419. return false;
  420. }
  421. return ret == RState.End;
  422. }
  423. private bool FnAbortLeakCheck(object[] param)
  424. {
  425. _leakCheckRoutine.Abort();
  426. return true;
  427. }
  428. private bool FnStartPick(object[] param)
  429. {
  430. return _pickRoutine.Start(param) == RState.Running;
  431. }
  432. private bool FnPickTimeout(object[] param)
  433. {
  434. RState ret = _pickRoutine.Monitor();
  435. if (ret == RState.Failed || ret == RState.Timeout)
  436. {
  437. PostMsg(MSG.Error);
  438. return false;
  439. }
  440. return ret == RState.End;
  441. }
  442. private bool FnAbortPick(object[] param)
  443. {
  444. _pickRoutine.Abort();
  445. return true;
  446. }
  447. private bool FnStartPlace(object[] param)
  448. {
  449. return _placeRoutine.Start(param) == RState.Running;
  450. }
  451. private bool FnPlaceTimeout(object[] param)
  452. {
  453. RState ret = _placeRoutine.Monitor();
  454. if (ret == RState.Failed || ret == RState.Timeout)
  455. {
  456. PostMsg(MSG.Error);
  457. return false;
  458. }
  459. return ret == RState.End;
  460. }
  461. private bool FnAbortPlace(object[] param)
  462. {
  463. _placeRoutine.Abort();
  464. return true;
  465. }
  466. private bool FnStartSwap(object[] param)
  467. {
  468. return _swapRoutine.Start(param) == RState.Running;
  469. }
  470. private bool FnSwapTimeout(object[] param)
  471. {
  472. RState ret = _swapRoutine.Monitor();
  473. if (ret == RState.Failed || ret == RState.Timeout)
  474. {
  475. PostMsg(MSG.Error);
  476. return false;
  477. }
  478. return ret == RState.End;
  479. }
  480. private bool FnAbortSwap(object[] param)
  481. {
  482. _swapRoutine.Abort();
  483. return true;
  484. }
  485. private bool FnStartPMPick(object[] param)
  486. {
  487. return _pmPickRoutine.Start(param) == RState.Running;
  488. }
  489. private bool FnPMPickTimeout(object[] param)
  490. {
  491. RState ret = _pmPickRoutine.Monitor();
  492. if (ret == RState.Failed || ret == RState.Timeout)
  493. {
  494. PostMsg(MSG.Error);
  495. return false;
  496. }
  497. return ret == RState.End;
  498. }
  499. private bool FnAbortPMPick(object[] param)
  500. {
  501. _pmPickRoutine.Abort();
  502. return true;
  503. }
  504. private bool FnStartPMPlace(object[] param)
  505. {
  506. return _pmPlaceRoutine.Start(param) == RState.Running;
  507. }
  508. private bool FnPMPlaceTimeout(object[] param)
  509. {
  510. RState ret = _pmPlaceRoutine.Monitor();
  511. if (ret == RState.Failed || ret == RState.Timeout)
  512. {
  513. PostMsg(MSG.Error);
  514. return false;
  515. }
  516. return ret == RState.End;
  517. }
  518. private bool FnAbortPMPlace(object[] param)
  519. {
  520. _pmPlaceRoutine.Abort();
  521. return true;
  522. }
  523. private bool FnStartPMSwap(object[] param)
  524. {
  525. return _pmSwapRoutine.Start(param) == RState.Running;
  526. }
  527. private bool FnPMSwapTimeout(object[] param)
  528. {
  529. RState ret = _pmSwapRoutine.Monitor();
  530. if (ret == RState.Failed || ret == RState.Timeout)
  531. {
  532. PostMsg(MSG.Error);
  533. return false;
  534. }
  535. return ret == RState.End;
  536. }
  537. private bool FnAbortPMSwap(object[] param)
  538. {
  539. _pmSwapRoutine.Abort();
  540. return true;
  541. }
  542. private bool FnStartRetract(object[] param)
  543. {
  544. return _pmRetractRoutine.Start(param) == RState.Running;
  545. }
  546. private bool FnRetract(object[] param)
  547. {
  548. RState ret = _pmRetractRoutine.Monitor();
  549. if (ret == RState.Failed || ret == RState.Timeout)
  550. {
  551. PostMsg(MSG.Error);
  552. return false;
  553. }
  554. return ret == RState.End;
  555. }
  556. private bool FnAbortRetract(object[] param)
  557. {
  558. _pmRetractRoutine.Abort();
  559. return true;
  560. }
  561. private bool FnStartExtend(object[] param)
  562. {
  563. return _pmExtendRoutine.Start(param) == RState.Running;
  564. }
  565. private bool FnExtend(object[] param)
  566. {
  567. RState ret = _pmExtendRoutine.Monitor();
  568. if (ret == RState.Failed || ret == RState.Timeout)
  569. {
  570. PostMsg(MSG.Error);
  571. return false;
  572. }
  573. return ret == RState.End;
  574. }
  575. private bool FnAbortHome(object[] param)
  576. {
  577. _homeRoutine.Abort();
  578. return true;
  579. }
  580. private bool FnAbortHomeRB(object[] param)
  581. {
  582. _homeRoutine.Abort();
  583. return true;
  584. }
  585. private bool FnAbortExtend(object[] param)
  586. {
  587. _pmExtendRoutine.Abort();
  588. return true;
  589. }
  590. private bool RobotGoto(object[] param)
  591. {
  592. PostMsg(MSG.Goto, param);
  593. return true;
  594. //return _robot.Goto((ModuleName)param[0], (int)param[1]);
  595. }
  596. private bool ControlPressureTimer_Elapsed(object[] param)
  597. {
  598. // robot idle check
  599. _robotIdleTrigger.CLK = _robot.Status != RState.Running;
  600. if (_robotIdleTrigger.Q)
  601. {
  602. _robotWatch.Restart();
  603. }
  604. if (RouteManager.IsATMMode)
  605. {
  606. return true;
  607. }
  608. if (IsOnline == true)
  609. {
  610. //if (_tm.AllPMSlitDoorClosed != _allPMSlitDoorClosed)
  611. //{
  612. // startControlPressureFlag = true;
  613. //}
  614. //_allPMSlitDoorClosed = _tm.AllPMSlitDoorClosed;
  615. if (startControlPressureFlag == true)
  616. {
  617. //_tmControlPressureRoutine.Start(param);
  618. _controlPressureCheckPoint = SC.GetValue<int>($"TM.ControlPressureCheckPoint");
  619. _controlPressureSetPoint = SC.GetValue<int>($"TM.ControlPressureSetPoint");
  620. _controlFlowSetPoint = SC.GetValue<int>($"TM.TM_MFC1.DefaultSetPoint");
  621. startControlPressureFlag = false;
  622. stopControlPressureFlag = false;
  623. _pumpingRoutine.Start();
  624. }
  625. RState ret = _pumpingRoutine.Monitor();
  626. if (ret == RState.End && _tm.ChamberPressure <= _controlPressureCheckPoint)
  627. {
  628. if (stopControlPressureFlag == false)
  629. {
  630. stopControlPressureFlag = true;
  631. //_tm.TurnFastPumpValve(ModuleName.TM, true);
  632. _tm.TurnSoftPumpValve(ModuleName.TM, true);
  633. _tm.TurnN2Valve(true);
  634. _tm.TurnPurgeValve(ModuleName.TM, true);
  635. if (_tm.AllPMSlitDoorClosed)
  636. {
  637. _tm.SetTMFlow(0);
  638. _tm.SwitchTMPressureMode(true);
  639. _tm.SetTMPressure(_controlPressureSetPoint);
  640. }
  641. else
  642. {
  643. _tm.SetTMPressure(0);
  644. _tm.SwitchTMPressureMode(false);
  645. _tm.SetTMFlow(_controlFlowSetPoint);
  646. }
  647. //if (_tm.PMASlitDoorClosed == false || _tm.PMBSlitDoorClosed == false || _tm.PMCSlitDoorClosed == false || _tm.PMDSlitDoorClosed == false)
  648. //{
  649. // _tm.SwitchTMPressureMode(false);
  650. //}
  651. //else
  652. //{
  653. // _tm.SwitchTMPressureMode(true);
  654. //}
  655. }
  656. }
  657. }
  658. else
  659. {
  660. if (stopControlPressureFlag == true)
  661. {
  662. //_tm.TurnFastPumpValve(ModuleName.TM, false);
  663. _tm.TurnSoftPumpValve(ModuleName.TM, false);
  664. //_tm.TurnN2Valve(false);
  665. _tm.TurnPurgeValve(ModuleName.TM, false);
  666. _tm.SetTMPressure(0);
  667. _tm.SetTMFlow(0);
  668. }
  669. startControlPressureFlag = true;
  670. stopControlPressureFlag = false;
  671. }
  672. return true;
  673. }
  674. private bool FnStartGoto(object[] param)
  675. {
  676. return _mFRotationRoutine.Start(param) == RState.Running;
  677. }
  678. private bool FnGoto(object[] param)
  679. {
  680. RState ret = _mFRotationRoutine.Monitor();
  681. if (ret == RState.Failed || ret == RState.Timeout)
  682. {
  683. PostMsg(MSG.Error);
  684. return false;
  685. }
  686. return ret == RState.End;
  687. }
  688. private bool FnAbortGoto(object[] param)
  689. {
  690. _mFRotationRoutine.Abort();
  691. return true;
  692. }
  693. public bool Check(int msg, out string reason, params object[] args)
  694. {
  695. reason = "";
  696. return true;
  697. }
  698. public int Invoke(string function, params object[] args)
  699. {
  700. switch (function)
  701. {
  702. case "Home":
  703. CheckToPostMessage((int)MSG.Home);
  704. return (int)MSG.Home;
  705. }
  706. return (int)FSM_MSG.NONE;
  707. }
  708. public bool CheckAcked(int msg)
  709. {
  710. return fsm.CheckExecuted(msg);
  711. }
  712. public bool CheckToPostMessage(int msg, params object[] args)
  713. {
  714. if (!fsm.FindTransition(fsm.State, msg))
  715. {
  716. LOG.Write(eEvent.WARN_FSM_WARN, ModuleName.TM, $"TM is in {(STATE)fsm.State} state,can not do {(MSG)msg}");
  717. return false;
  718. }
  719. Running = true;
  720. fsm.PostMsg(msg, args);
  721. return true;
  722. }
  723. public bool TurnEFEMSlitDoor(ModuleName loadlock, bool open, out string reason)
  724. {
  725. return _tm.TurnEFEMSlitDoor(loadlock, open, out reason);
  726. }
  727. public bool TMRobotNotExtendModule(ModuleName moduleName)
  728. {
  729. return _tm.TMRobotNotExtendModule(moduleName);
  730. }
  731. public bool EFEMRobotNotExtendModule(ModuleName moduleName)
  732. {
  733. return _tm.EFEMRobotNotExtendModule(moduleName);
  734. }
  735. //private bool FsmStartTMCycle(object[] objs)
  736. //{
  737. // return _TMCycle.Start(objs) == RState.Running;
  738. //}
  739. //private bool FsmMonitorTMCycle(object[] objs)
  740. //{
  741. // RState ret = _TMCycle.Monitor();
  742. // if (ret == RState.Failed || ret == RState.Timeout)
  743. // {
  744. // PostMsg(MSG.Error);
  745. // return false;
  746. // }
  747. // return ret == RState.End;
  748. //}
  749. private void _debugRoutine()
  750. {
  751. int flag = 0;
  752. // Test Home routine
  753. if (flag == 1)
  754. {
  755. PostMsg(MSG.Home);
  756. }
  757. else if (flag == 2)
  758. {
  759. PostMsg(MSG.Vent);
  760. }
  761. else if (flag == 3)
  762. {
  763. PostMsg(MSG.Pump);
  764. }
  765. else if (flag == 4)
  766. {
  767. PostMsg(MSG.Pick, ModuleName.LLA, 0, 0);
  768. }
  769. else if (flag == 5)
  770. {
  771. PostMsg(MSG.Place, ModuleName.LLA, 0, 0);
  772. }
  773. else if (flag == 6)
  774. {
  775. Queue<MoveItem> items = new Queue<MoveItem>();
  776. items.Enqueue(new MoveItem(ModuleName.TMRobot, 0, ModuleName.LLA, 0, Hand.Blade1));
  777. items.Enqueue(new MoveItem(ModuleName.TMRobot, 1, ModuleName.LLA, 1, Hand.Blade2));
  778. items.Enqueue(new MoveItem(ModuleName.LLA, 0, ModuleName.TMRobot, 0, Hand.Blade1));
  779. items.Enqueue(new MoveItem(ModuleName.LLA, 1, ModuleName.TMRobot, 1, Hand.Blade2));
  780. PostMsg(MSG.Swap, items);
  781. }
  782. else if (flag == 7)
  783. {
  784. PostMsg(MSG.PMPick, ModuleName.PMA, 0, 0);
  785. }
  786. else if (flag == 8)
  787. {
  788. PostMsg(MSG.PMPlace, ModuleName.PMA, 0, 0);
  789. }
  790. else if (flag == 9)
  791. {
  792. PostMsg(MSG.PMSwap, ModuleName.PMA, 0, 0, 0, 0);
  793. }
  794. //else if (flag == 4)
  795. //{
  796. // PostMsg(MSG.PumpLoadLock);
  797. //}
  798. //else if (flag == 5)
  799. //{
  800. // PostMsg(MSG.VentLoadLock);
  801. //}
  802. //else if (flag == 6)
  803. //{
  804. // PostMsg(MSG.PurgeLoadLock);
  805. //}
  806. //else if (flag == 7)
  807. //{
  808. // PostMsg(MSG.LaunchPump);
  809. //}
  810. //else if (flag == 8)
  811. //{
  812. // PostMsg(MSG.LaunchTurboPump);
  813. //}
  814. //else if (flag == 9)
  815. //{
  816. // PostMsg(MSG.LoadLockLeakCheck);
  817. //}
  818. //else if (flag == 10)
  819. //{
  820. // PostMsg(MSG.CyclePurge);
  821. //}
  822. //else if (flag == 11)
  823. //{
  824. // PostMsg(MSG.GasLinePurge);
  825. //}
  826. //else if (flag == 12)
  827. //{
  828. // PostMsg(MSG.LeakCheck);
  829. //}
  830. //else if (flag == 13)
  831. //{
  832. // PostMsg(MSG.GasLeakCheck);
  833. //}
  834. //else if (flag == 14)
  835. //{
  836. // PostMsg(MSG.LLPlace);
  837. //}
  838. //else if (flag == 15)
  839. //{
  840. // PostMsg(MSG.LLPick);
  841. //}
  842. //else if (flag == 16)
  843. //{
  844. // PostMsg(MSG.RunRecipe, "7777");
  845. //}
  846. //else if (flag == 17)
  847. //{
  848. // PostMsg(MSG.MFCVerification, "MFC2", (double)50, 10);
  849. //}
  850. }
  851. }
  852. }