MFPMSwapRoutine.cs 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581
  1. using Aitex.Core.RT.Routine;
  2. using Aitex.Core.RT.SCCore;
  3. using Aitex.Sorter.Common;
  4. using Venus_RT.Devices;
  5. using Aitex.Core.Common;
  6. using MECF.Framework.Common.Routine;
  7. using MECF.Framework.Common.Equipment;
  8. using MECF.Framework.Common.SubstrateTrackings;
  9. using Venus_Core;
  10. using Aitex.Core.RT.Log;
  11. using Aitex.Core.Util;
  12. using Venus_RT.Modules.PMs;
  13. using MECF.Framework.Common.Schedulers;
  14. using System.Collections.Generic;
  15. using System;
  16. using Aitex.Core.RT.Device;
  17. using MECF.Framework.Common.DBCore;
  18. namespace Venus_RT.Modules.TM
  19. {
  20. class MFPMSwapRoutine : ModuleRoutineBase, IRoutine
  21. {
  22. private enum SwapStep
  23. {
  24. WaitPMReady,
  25. PreRotation,
  26. OpenSlitDoor,
  27. PickPrepare,
  28. PickExtend,
  29. DropDownWafer,
  30. PickDelay,
  31. PickRetract,
  32. PlacePrepare,
  33. PlaceExtend,
  34. LiftUpWafer,
  35. PlaceDelay,
  36. PlaceRetract,
  37. CloseSlitDoor,
  38. NotifyDone,
  39. }
  40. private enum SwapWithHeaterStep
  41. {
  42. WaitPMReady,
  43. PreRotation,
  44. WaitPressreStable,
  45. OpenSlitDoor,
  46. PickPrepare,
  47. Picking,
  48. QueryPickAWCData,
  49. SavePickAWCData,
  50. CheckPickAWCData,
  51. PlacePrepare,
  52. Placing,
  53. QueryPlaceAWCData,
  54. SavePlaceAWCData,
  55. CheckPlaceAWCData,
  56. CloseSlitDoor,
  57. NotifyDone,
  58. }
  59. private readonly JetTM _JetTM;
  60. private readonly ITransferRobot _robot;
  61. private int _swapingTimeout = 120 * 1000;
  62. private int _liftPinTimeout = 20 * 1000;
  63. private int _placeDelayTime = 0;
  64. private int _pickDelayTime = 0;
  65. private ModuleName _targetModule;
  66. private PMEntity _pmModule;
  67. private JetPMBase _jetPM;
  68. private int _targetSlot;
  69. private Hand _pickHand;
  70. private Hand _placeHand;
  71. double maxPressureDifference;
  72. private bool _pickQueryAWC;
  73. private bool _placeQueryAWC;
  74. private Hand _hand;
  75. private DateTime _starttime;
  76. private int _robotTransferAWCOffset;
  77. private int _robotPickDelayTime = 500;
  78. public MFPMSwapRoutine(JetTM tm, ITransferRobot robot) : base(ModuleName.TMRobot)
  79. {
  80. _JetTM = tm;
  81. _robot = robot;
  82. Name = "Swap with PM";
  83. }
  84. public RState Start(params object[] objs)
  85. {
  86. if (!_robot.IsHomed)
  87. {
  88. LOG.Write(eEvent.ERR_TM, Module, $"TM Robot is not homed, please home it first");
  89. return RState.Failed;
  90. }
  91. var swapItem = (Queue<MoveItem>)objs[0];
  92. if (!WaferManager.Instance.CheckDuplicatedWafersBeforeMove(swapItem))
  93. return RState.Failed;
  94. _targetModule = swapItem.Peek().SourceModule;
  95. _targetSlot = swapItem.Peek().SourceSlot;
  96. _pickHand = swapItem.Peek().RobotHand;
  97. _placeHand = _pickHand == Hand.Blade2 ? Hand.Blade1 : Hand.Blade2;
  98. if (ModuleHelper.IsPm(_targetModule) && ModuleHelper.IsInstalled(_targetModule))
  99. {
  100. _pmModule = Singleton<RouteManager>.Instance.GetPM(_targetModule);
  101. _jetPM= DEVICE.GetDevice<JetPMBase>(_targetModule.ToString());
  102. }
  103. else
  104. {
  105. LOG.Write(eEvent.ERR_TM, Module, $"Invalid target module : {_targetModule} for swap action");
  106. return RState.Failed;
  107. }
  108. if (WaferManager.Instance.CheckNoWafer(ModuleName.TMRobot, (int)_placeHand))
  109. {
  110. LOG.Write(eEvent.ERR_TM, Module, $"Cannot Swap Wafer as TM Robot Arm: {_placeHand} has no wafer");
  111. return RState.Failed;
  112. }
  113. if (WaferManager.Instance.CheckHasWafer(ModuleName.TMRobot, (int)_pickHand))
  114. {
  115. LOG.Write(eEvent.ERR_TM, Module, $"Cannot Swap Wafer as TM Robot Arm: {_pickHand} has a wafer");
  116. return RState.Failed;
  117. }
  118. if (WaferManager.Instance.CheckNoWafer(_targetModule, _targetSlot))
  119. {
  120. LOG.Write(eEvent.ERR_TM, Module, $"Cannot Swap Wafer as {_targetModule} Slot {_targetSlot + 1} has no wafer");
  121. return RState.Failed;
  122. }
  123. var wafer = WaferManager.Instance.GetWafer(_targetModule, _targetSlot);
  124. if (wafer.ChuckState == EnumWaferChuckStatus.Chucked)
  125. {
  126. LOG.Write(eEvent.ERR_TM, Module, $"Cannot pick the wafer in {_targetModule} as the wafer is chucked");
  127. return RState.Failed;
  128. }
  129. Reset();
  130. _swapingTimeout = SC.GetValue<int>($"TM.SwapTimeout") * 1000;
  131. _pickDelayTime = SC.GetValue<int>($"{_targetModule}.PickDelayTime");
  132. _placeDelayTime = SC.GetValue<int>($"{_targetModule}.PlaceDelayTime");
  133. maxPressureDifference = SC.GetValue<double>("System.PMTMMaxPressureDifference");
  134. int queryAWCType = SC.GetValue<int>($"TM.QueryAWCOption");
  135. if (queryAWCType == 0)
  136. {
  137. _pickQueryAWC = false;
  138. _placeQueryAWC = false;
  139. }
  140. else if (queryAWCType == 1)
  141. {
  142. _pickQueryAWC = true;
  143. }
  144. else if (queryAWCType == 2)
  145. {
  146. _placeQueryAWC = true;
  147. }
  148. else if (queryAWCType == 3)
  149. {
  150. _pickQueryAWC = true;
  151. _placeQueryAWC = true;
  152. }
  153. _robotTransferAWCOffset = SC.GetValue<int>("TM.EnterPMAWCAlarmLimit");
  154. if (RtInstance.ConfigType == ConfigType.Kepler2200)
  155. {
  156. _robotPickDelayTime = SC.GetValue<int>($"TM.RobotPickDelayTime");
  157. }
  158. return Runner.Start(Module, $"Swap with {_targetModule}");
  159. }
  160. public RState Monitor()
  161. {
  162. //Runner.Wait(SwapStep.WaitPMReady, () => _pmModule.IsIdle, _delay_60s)
  163. // .RunIf(SwapStep.PreRotation, _JetTM.PreRotateModules.ContainsKey(_targetModule), RotateArm, WaitRotateDone)
  164. // .Run(SwapStep.PickPrepare, PickPrepare, IsModuleReadyForPick)
  165. // .Run(SwapStep.PickExtend, PickExtend, WaitRobotExtendDone)
  166. // .Run(SwapStep.DropDownWafer, NotifyPMPickWafer, WaitPMWaferDropDown)
  167. // .Delay(SwapStep.PickDelay, _pickDelayTime)
  168. // .Run(SwapStep.PickRetract, PickRetract, WaitRobotRetractDone)
  169. // .Run(SwapStep.PlacePrepare, PlacePrepare, IsModuleReadyForPlace)
  170. // .Run(SwapStep.PlaceExtend, PlaceExtend, WaitRobotExtendDone)
  171. // .Run(SwapStep.LiftUpWafer, NotifyLiftUpWafer, WaitPMWaferLiftUp)
  172. // .Delay(SwapStep.PlaceDelay, _placeDelayTime)
  173. // .Run(SwapStep.PlaceRetract, PlaceRetract, WaitRobotRetractDone)
  174. // .End(SwapStep.NotifyDone, NotifyPMDone, _delay_50ms);
  175. switch (_pmModule.ChamberType)
  176. {
  177. //case JetChamber.Venus:
  178. case JetChamber.Kepler2300:
  179. Runner.Wait(SwapStep.WaitPMReady, () => _pmModule.IsIdle, _delay_60s)
  180. .RunIf(SwapStep.PreRotation, _JetTM.PreRotateModules.ContainsKey(_targetModule), RotateArm, WaitRotateDone)
  181. .Run(SwapStep.OpenSlitDoor, OpenPMSlitDoor, OpenPMSlitDoorIsOK)
  182. .Run(SwapStep.PickPrepare, PickPrepare, IsModuleReadyForPick)
  183. .Run(SwapStep.PickExtend, PickExtend, WaitRobotExtendDone)
  184. .Run(SwapStep.DropDownWafer, NotifyPMPickWafer, WaitPMWaferDropDown)
  185. .Delay(SwapStep.PickDelay, _pickDelayTime)
  186. .Run(SwapStep.PickRetract, PickRetract, WaitRobotRetractDone)
  187. .Run(SwapStep.PlacePrepare, PlacePrepare, IsModuleReadyForPlace)
  188. .Run(SwapStep.PlaceExtend, PlaceExtend, WaitRobotExtendDone)
  189. .Run(SwapStep.LiftUpWafer, NotifyLiftUpWafer, WaitPMWaferLiftUp)
  190. .Delay(SwapStep.PlaceDelay, _placeDelayTime)
  191. .Run(SwapStep.PlaceRetract, PlaceRetract, WaitRobotRetractDone)
  192. .Run(SwapStep.CloseSlitDoor, ClosePMSlitDoor, ClosePMSlitDoorIsOK)
  193. .End(SwapStep.NotifyDone, NotifyPMDone, _delay_50ms);
  194. break;
  195. case JetChamber.Kepler2200A:
  196. case JetChamber.Kepler2200B:
  197. Runner.Wait(SwapWithHeaterStep.WaitPMReady, () => _pmModule.IsIdle, _delay_60s)
  198. .RunIf(SwapWithHeaterStep.PreRotation, _JetTM.PreRotateModules.ContainsKey(_targetModule), RotateArm, WaitRotateDone)
  199. .Run(SwapWithHeaterStep.PickPrepare, PickPrepare, IsModuleReadyForPick)
  200. .Wait(SwapWithHeaterStep.WaitPressreStable, TMPMPressureIsOK, _delay_60s)
  201. .Run(SwapWithHeaterStep.OpenSlitDoor, OpenPMSlitDoor, OpenPMSlitDoorIsOK)
  202. .Run(SwapWithHeaterStep.Picking, Picking, WaitPickDone)
  203. .RunIf(SwapWithHeaterStep.QueryPickAWCData, _pickQueryAWC, QueryAWC, WaitRobotQueryDone)
  204. .RunIf(SwapWithHeaterStep.SavePickAWCData, _pickQueryAWC, PickRecordAWCData, NullFun)
  205. .RunIf(SwapWithHeaterStep.CheckPickAWCData, _pickQueryAWC, CheckAwc)
  206. .Run(SwapWithHeaterStep.PlacePrepare, PlacePrepare, IsModuleReadyForPlace)
  207. .Run(SwapWithHeaterStep.Placing, Placing, WaitPlaceDone)
  208. .RunIf(SwapWithHeaterStep.QueryPlaceAWCData, _placeQueryAWC, QueryAWC, WaitRobotQueryDone)
  209. .RunIf(SwapWithHeaterStep.SavePlaceAWCData, _placeQueryAWC, RecordAWCData, NullFun)
  210. .RunIf(SwapWithHeaterStep.CheckPlaceAWCData, _placeQueryAWC, CheckAwc)
  211. .Run(SwapWithHeaterStep.CloseSlitDoor, ClosePMSlitDoor, ClosePMSlitDoorIsOK)
  212. .End(SwapWithHeaterStep.NotifyDone, NotifyPMDone, _robotPickDelayTime * 1000);
  213. break;
  214. }
  215. return Runner.Status;
  216. }
  217. private bool PickPrepare()
  218. {
  219. _pmModule.PostMsg(PMEntity.MSG.PreparePick);
  220. return true;
  221. }
  222. private bool TMPMPressureIsOK()
  223. {
  224. if (RouteManager.IsATMMode)
  225. {
  226. return _JetTM.IsTMATM && _JetTM.IsModuleATM(_targetModule);
  227. }
  228. else
  229. {
  230. if (Math.Abs((_pmModule.ChamberPressure - _JetTM.ChamberPressure)) < (maxPressureDifference-2))
  231. {
  232. LOG.Write(eEvent.INFO_TM, Module, $"TM Pressure {_JetTM.ChamberPressure},PM Pressure {_pmModule.ChamberPressure}");
  233. return true;
  234. }
  235. else
  236. {
  237. return false;
  238. }
  239. }
  240. }
  241. private bool OpenPMSlitDoor()
  242. {
  243. return _JetTM.TurnMFSlitDoor(_targetModule, true, out _);
  244. }
  245. private bool OpenPMSlitDoorIsOK()
  246. {
  247. return _JetTM.IsPMSlitdoorOpened(_targetModule);
  248. }
  249. private bool ClosePMSlitDoor()
  250. {
  251. return _JetTM.TurnMFSlitDoor(_targetModule, false, out _);
  252. }
  253. private bool ClosePMSlitDoorIsOK()
  254. {
  255. return _JetTM.IsPMSlitdoorClosed(_targetModule);
  256. }
  257. private bool IsModuleReadyForPick()
  258. {
  259. return _pmModule.Status == PMEntity.PMStatus.Ready_For_Pick;
  260. }
  261. private bool PickExtend()
  262. {
  263. return _robot.PickExtend(_targetModule, _targetSlot, _pickHand);
  264. }
  265. private bool PickRetract()
  266. {
  267. return _robot.PickRetract(_targetModule, _targetSlot, _pickHand);
  268. }
  269. private bool PlacePrepare()
  270. {
  271. _pmModule.PostMsg(PMEntity.MSG.PreparePlace);
  272. return true;
  273. }
  274. private bool IsModuleReadyForPlace()
  275. {
  276. return _pmModule.Status == PMEntity.PMStatus.Ready_For_Place;
  277. }
  278. private bool PlaceExtend()
  279. {
  280. return _robot.PlaceExtend(_targetModule, _targetSlot, _placeHand);
  281. }
  282. private bool PlaceRetract()
  283. {
  284. return _robot.PlaceRetract(_targetModule, _targetSlot, _placeHand);
  285. }
  286. private bool WaitRobotExtendDone()
  287. {
  288. if (_robot.Status == RState.Running)
  289. {
  290. return false;
  291. }
  292. else if (_robot.Status == RState.End)
  293. {
  294. return true;
  295. }
  296. else
  297. {
  298. Runner.Stop($"TM Robot Place Extend failed, {_robot.Status}");
  299. return true;
  300. }
  301. }
  302. private bool Picking()
  303. {
  304. if (!_jetPM.IsAllowRobotTransfer)
  305. {
  306. Runner.Stop($"不允许Pick,传片位置信号不满足");
  307. return false;
  308. }
  309. if (!_jetPM.PreparePlaceIsOK())
  310. {
  311. Runner.Stop($"不允许Pick,传片位置信号满足,但不在Position1");
  312. return false;
  313. }
  314. _hand = _pickHand;
  315. _starttime=DateTime.Now;
  316. return _robot.Pick(_targetModule, _targetSlot, _pickHand);
  317. //if (_jetPM.PreparePickIsOK())
  318. //{
  319. //}
  320. //else
  321. //{
  322. // Runner.Stop($"TM Robot Picking failed due to");
  323. // return false;
  324. //}
  325. }
  326. private bool QueryAWC()
  327. {
  328. return _robot.QueryAwc();
  329. }
  330. private bool PickRecordAWCData()
  331. {
  332. //已经move后的数据
  333. string _origin_module = $"LP{WaferManager.Instance.GetWafer(ModuleName.TMRobot, (int)_pickHand).OriginStation}";
  334. int _origin_slot = WaferManager.Instance.GetWafer(ModuleName.TMRobot, (int)_pickHand).OriginSlot;
  335. //查询完毕 插入数据
  336. OffsetDataRecorder.RecordOffsetData(
  337. Guid.NewGuid().ToString(),
  338. ModuleName.TMRobot, 0,
  339. _targetModule, _targetSlot,
  340. _origin_module, _origin_slot,
  341. _hand, RobotArmPan.None,
  342. _robot.Offset_X, _robot.Offset_Y, _robot.Offset_D,
  343. _starttime, DateTime.Now);
  344. return true;
  345. }
  346. private bool RecordAWCData()
  347. {
  348. //已经move后的数据
  349. string _origin_module = $"LP{WaferManager.Instance.GetWafer(_targetModule, _targetSlot).OriginStation}";
  350. int _origin_slot = WaferManager.Instance.GetWafer(_targetModule, _targetSlot).OriginSlot;
  351. //查询完毕 插入数据
  352. OffsetDataRecorder.RecordOffsetData(
  353. Guid.NewGuid().ToString(),
  354. ModuleName.TMRobot, 0,
  355. _targetModule, _targetSlot,
  356. _origin_module, _origin_slot,
  357. _hand, RobotArmPan.None,
  358. _robot.Offset_X, _robot.Offset_Y, _robot.Offset_D,
  359. _starttime, DateTime.Now);
  360. return true;
  361. }
  362. private bool CheckAwc()
  363. {
  364. if (Math.Abs(_robot.Offset_X) > _robotTransferAWCOffset)
  365. {
  366. Stop($"Check AWC 失败, 当前 X AWC [{_robot.Offset_X}um], 高于Alarm最大值: [{_robotTransferAWCOffset}]um");
  367. return false;
  368. }
  369. if (Math.Abs(_robot.Offset_Y) > _robotTransferAWCOffset)
  370. {
  371. Stop($"Check AWC 失败, 当前 Y AWC [{_robot.Offset_Y}um], 高于Alarm最大值: [{_robotTransferAWCOffset}]um");
  372. return false;
  373. }
  374. return true;
  375. }
  376. private bool WaitRobotQueryDone()
  377. {
  378. if (_robot.Status == RState.Running)
  379. {
  380. return false;
  381. }
  382. else if (_robot.Status == RState.End)
  383. {
  384. return true;
  385. }
  386. else
  387. {
  388. Runner.Stop($"TM Robot Query Awc failed, {_robot.Status}");
  389. return true;
  390. }
  391. }
  392. private bool WaitPickDone()
  393. {
  394. if (_robot.Status == RState.Running)
  395. {
  396. return false;
  397. }
  398. else if (_robot.Status == RState.End)
  399. {
  400. WaferManager.Instance.WaferMoved(_targetModule, _targetSlot, ModuleName.TMRobot, (int)_pickHand);
  401. return true;
  402. }
  403. else
  404. {
  405. WaferManager.Instance.CreateDuplicatedWafer(_targetModule, _targetSlot, ModuleName.TMRobot, (int)_pickHand);
  406. Runner.Stop($"TM Robot Picking failed, {_robot.Status}");
  407. return true;
  408. }
  409. }
  410. private bool Placing()
  411. {
  412. if (!_jetPM.IsAllowRobotTransfer)
  413. {
  414. Runner.Stop($"不允许Place,传片位置信号不满足");
  415. return false;
  416. }
  417. if (!_jetPM.PreparePlaceIsOK())
  418. {
  419. Runner.Stop($"不允许Place,传片位置信号满足,但不在Position1");
  420. return false;
  421. }
  422. _hand = _placeHand;
  423. _starttime = DateTime.Now;
  424. return _robot.Place(_targetModule, _targetSlot, _placeHand);
  425. }
  426. private bool WaitPlaceDone()
  427. {
  428. if (_robot.Status == RState.Running)
  429. {
  430. return false;
  431. }
  432. else if (_robot.Status == RState.End)
  433. {
  434. WaferManager.Instance.WaferMoved(ModuleName.TMRobot, (int)_placeHand, _targetModule, _targetSlot);
  435. return true;
  436. }
  437. else
  438. {
  439. WaferManager.Instance.CreateDuplicatedWafer(ModuleName.TMRobot, (int)_placeHand, _targetModule, _targetSlot);
  440. Runner.Stop($"TM Robot Place failed, {_robot.Status}");
  441. return true;
  442. }
  443. }
  444. private bool RotateArm()
  445. {
  446. _pmModule.PostMsg(PMEntity.MSG.PreparePick); // Notify PM to Serv pressure in advance for throughput enhancement
  447. return _robot.Goto(_JetTM.PreRotateModules[_targetModule], 0, _placeHand);
  448. }
  449. private bool WaitRotateDone()
  450. {
  451. if (_robot.Status == RState.Running)
  452. {
  453. return false;
  454. }
  455. else if (_robot.Status == RState.End)
  456. {
  457. return true;
  458. }
  459. else
  460. {
  461. Runner.Stop($"TM Robot Rotate Arm failed, {_robot.Status}");
  462. return true;
  463. }
  464. }
  465. private bool NotifyPMPickWafer()
  466. {
  467. _pmModule.PostMsg(PMEntity.MSG.DropDownWafer);
  468. return true;
  469. }
  470. private bool WaitPMWaferDropDown()
  471. {
  472. if (_pmModule.Status == PMEntity.PMStatus.Exchange_Ready)
  473. {
  474. WaferManager.Instance.WaferMoved(_targetModule, _targetSlot, ModuleName.TMRobot, (int)_pickHand);
  475. return true;
  476. }
  477. else if (Runner.StepElapsedMS > _liftPinTimeout)
  478. {
  479. WaferManager.Instance.CreateDuplicatedWafer(_targetModule, _targetSlot, ModuleName.TMRobot, (int)_pickHand);
  480. Runner.Stop($"Wait {_targetModule} Lift Pin down timeout, {Runner.StepElapsedMS}");
  481. }
  482. return false;
  483. }
  484. private bool WaitRobotRetractDone()
  485. {
  486. if (_robot.Status == RState.Running)
  487. {
  488. return false;
  489. }
  490. else if (_robot.Status == RState.End)
  491. {
  492. return true;
  493. }
  494. else
  495. {
  496. Runner.Stop($"TM Robot Swap Retract failed, {_robot.Status}");
  497. return true;
  498. }
  499. }
  500. private bool NotifyLiftUpWafer()
  501. {
  502. _pmModule.PostMsg(PMEntity.MSG.LiftUpWafer);
  503. return true;
  504. }
  505. private bool WaitPMWaferLiftUp()
  506. {
  507. if (_pmModule.Status == PMEntity.PMStatus.Exchange_Ready)
  508. {
  509. WaferManager.Instance.WaferMoved(ModuleName.TMRobot, (int)_placeHand, _targetModule, _targetSlot);
  510. return true;
  511. }
  512. else if (Runner.StepElapsedMS > _liftPinTimeout)
  513. {
  514. WaferManager.Instance.CreateDuplicatedWafer(ModuleName.TMRobot, (int)_placeHand, _targetModule, _targetSlot);
  515. Runner.Stop($"Wait {_targetModule} Lift Pin Up timeout, {Runner.StepElapsedMS}");
  516. }
  517. return false;
  518. }
  519. private bool NotifyPMDone()
  520. {
  521. _pmModule.PostMsg(PMEntity.MSG.PlaceReady);
  522. return true;
  523. }
  524. public void Abort()
  525. {
  526. //_robot.Halt();
  527. }
  528. }
  529. }