VenusDevice.cs 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424
  1. namespace Venus_Core
  2. {
  3. public enum VenusDevice
  4. {
  5. ValveMfc1,
  6. ValveMfc2,
  7. ValveMfc3,
  8. ValveMfc4,
  9. ValveMfc5,
  10. ValveMfc6,
  11. ValveMfc7,
  12. ValveMfc8,
  13. ValveMfc9,
  14. ValveMfc10,
  15. ValveMfc11,
  16. ValveMfc12,
  17. ValvePVN21,
  18. ValvePVN22,
  19. ValvePV11,
  20. ValvePV12,
  21. ValvePV21,
  22. ValvePV22,
  23. ValvePV31,
  24. ValvePV32,
  25. ValvePV41,
  26. ValvePV42,
  27. ValvePV51,
  28. ValvePV52,
  29. ValvePV61,
  30. ValvePV62,
  31. ValvePV71,
  32. ValvePV72,
  33. ValvePV81,
  34. ValvePV82,
  35. ValvePV91,
  36. ValvePV92,
  37. ValvePVA1,
  38. ValvePVA2,
  39. ValvePVB1,
  40. ValvePVB2,
  41. ValvePVC1,
  42. ValvePVC2,
  43. ValvePV14,
  44. ValveN2,
  45. ValvePVHe1,
  46. ValvePVHe2,
  47. ValvePVHe3,
  48. ValveHeISO,
  49. ValveMainPurge,
  50. ValveSecondPurge,
  51. ValveGasFinal,
  52. ValveSoftPump,
  53. ValveFastPump,
  54. ValveCHBPurge,
  55. ValveTurboPumpPumping,
  56. ValveTurboPumpPurge,
  57. ValveGuage,
  58. ValveLoadlockVent,
  59. ValveLoadlockPumping,
  60. ValvePurge,
  61. MfcGas1,
  62. MfcGas2,
  63. MfcGas3,
  64. MfcGas4,
  65. MfcGas5,
  66. GasStick1,
  67. GasStick2,
  68. GasStick3,
  69. TemperatureControl,
  70. ChamberLid,
  71. ATM_SW,
  72. VAC_SW,
  73. WaterFlow_SW,
  74. N2_Pressure,
  75. ProcessGauge,
  76. PressureGauge,
  77. ForelineGauge,
  78. MainPump,
  79. Chiller,
  80. InnerChiller,
  81. OuterChiller,
  82. TopChiller,
  83. WallChiller,
  84. Rf,
  85. BiasRf,
  86. Match,
  87. BiasMatch,
  88. RFBox,
  89. PressureControl,
  90. ThrottleValve,
  91. HeaterChamber,
  92. ForelineHeater,
  93. Heartbeat,
  94. ResetPlcSignal,
  95. LiftPin,
  96. SlitDoor,
  97. SmallPin,
  98. MediumPin,
  99. LoadLockArm,
  100. StatisticsRfOnTime,
  101. StatisticsPumpOnTime,
  102. PlcDateTime,
  103. Lid,
  104. LidLoadlock,
  105. LidLocker,
  106. ESCHV,
  107. PendulumValve,
  108. TurboPump,
  109. EndPoint,
  110. TMLid,
  111. LLALid,
  112. LLBLid,
  113. LLATSlitDoor,
  114. LLBTSlitDoor,
  115. LLAESlitDoor,
  116. LLBESlitDoor,
  117. //se vce
  118. VCESlitDoor,
  119. VCESoftPumpValve,
  120. VCEFastPumpValve,
  121. VCESoftVentValve,
  122. VCEFastVentValve,
  123. VCEATMSensor,
  124. TMATMSensor,
  125. VCEVACSensor,
  126. TMVACSensor,
  127. VCESlitDoorOpenEnable,
  128. TMExtendVCEEnable,
  129. //se pm
  130. PMASlitDoor,
  131. PMBSlitDoor,
  132. PMCSlitDoor,
  133. PMASlitDoorOpenEnable,
  134. PMBSlitDoorOpenEnable,
  135. PMCSlitDoorOpenEnable,
  136. TMExtendPMAEnable,
  137. TMExtendPMBEnable,
  138. TMExtendPMCEnable,
  139. VCESlitDoorCloseEnable,
  140. PMASlitDoorCloseEnable,
  141. PMBSlitDoorCloseEnable,
  142. PMCSlitDoorCloseEnable,
  143. //tm all
  144. TMValveN2,
  145. TMSoftPumpValve,
  146. TMFastPumpValve,
  147. TMPurgeValve,
  148. TMVentValve,
  149. TMSoftVentValve,
  150. TMFastVentValve,
  151. //kepler tm
  152. LLASoftPumpValve,
  153. LLAFastPumpValve,
  154. LLAPurgeValve,
  155. LLAVentValve,
  156. LLBSoftPumpValve,
  157. LLBFastPumpValve,
  158. LLBPurgeValve,
  159. LLBVentValve,
  160. ValveWaterRelay,
  161. TMPowerOn,
  162. TMInSafty,
  163. WaferLeakSensor,
  164. EFEMSideDoorClosed,
  165. TMPCWFlowSwitch,
  166. LLAPCWFlowSwitch,
  167. LLBPCWFlowSwitch,
  168. TMLidClosed,
  169. CDAPressureSwitch,
  170. VaccumPressureSwitch,
  171. N2PressureSwitch,
  172. TMPressureCtrl,
  173. TMRobotNotExtendPMA,
  174. TMRobotNotExtendPMB,
  175. TMRobotNotExtendPMC,
  176. TMRobotNotExtendPMD,
  177. TMRobotNotExtendLLA,
  178. TMRobotNotExtendLLB,
  179. EfemRobotNotExtendLLA,
  180. EfemRobotNotExtendLLB,
  181. TMVacSwitch,
  182. LLAVacSwitch,
  183. LLBVacSwitch,
  184. TMATMSwitch,
  185. LLAATMSwitch,
  186. LLBATMSwitch,
  187. LLAWaferSizeCheckSwitch,
  188. LLBWaferSizeCheckSwitch,
  189. PMAWaferSizeCheckSwitch,
  190. PMBWaferSizeCheckSwitch,
  191. PMCWaferSizeCheckSwitch,
  192. PMDWaferSizeCheckSwitch,
  193. LLASoftVentValve,
  194. LLAFastVentValve,
  195. LLBSoftVentValve,
  196. LLBFastVentValve,
  197. TMVacAtmMode,
  198. LinerDoor,
  199. }
  200. public enum StateData
  201. {
  202. RecipeProcessTime,
  203. RecipeStepNo,
  204. RecipeStepMode,
  205. RecipeName,
  206. RecipeBaseName,
  207. RecipeStepTimeElapsed,
  208. RecipeStepTimeSetPoint,
  209. RecipeStepRfTimeSetPoint,
  210. RecipeStepElectrodeTemp,
  211. SmallWafer,
  212. MidWafer,
  213. BigWafer,
  214. RfTimeElapsed,
  215. PumpTime,
  216. PMState,
  217. TMState,
  218. IsAutoMode,
  219. IsPmOnline,
  220. IsTmOnline,
  221. PMJobState,
  222. TMJobState,
  223. PmPlatformState,
  224. JobState,
  225. JobTmRecipe,
  226. JobPmRecipe,
  227. JobStartTime,
  228. JobStopTime,
  229. JobProcessCount,
  230. IsPumpingOkForProcess,
  231. IsCoolingOkForProcess,
  232. IsGasFlowingOkForProcess,
  233. IsRfPowering,
  234. TotalCycle,
  235. ProcessStatus,
  236. AlarmEvent,
  237. LeakCheckElapseTime,
  238. DataLogName,
  239. LotName,
  240. CurrentMagazineType,
  241. SchedulerRecipe,
  242. SchedulerState,
  243. SchedulerLoadStationInSubstrate,
  244. SchedulerRailInSubstrate,
  245. SchedulerPmSubstrate,
  246. SchedulerRailOutSubstrate,
  247. SchedulerLoadStationOutSubstrate,
  248. }
  249. public enum RtOperation
  250. {
  251. DeviceOperation,
  252. LockLid,
  253. UnlockLid,
  254. StartPump,
  255. StartTurboPump,
  256. Pump,
  257. PumpLoadLock,
  258. StopPump,
  259. GasFlow,
  260. StopGasFlow,
  261. Cooling,
  262. StopCooling,
  263. /// <summary>
  264. ///
  265. /// 0:Step mode
  266. /// 1:Power on time
  267. /// 2:Electrode temperature
  268. /// 3:Electrode Critical temperature
  269. /// </summary>
  270. RfPower,
  271. Vent,
  272. VentLoadLock,
  273. Purge,
  274. PurgeLoadLock,
  275. Abort,
  276. Heat,
  277. SetConfig,
  278. SetPMBChillerState,
  279. SetHardwareConfig,
  280. LLPlace,
  281. LLPick,
  282. PMPick,
  283. PMPlace,
  284. Extend,
  285. Retract,
  286. Goto,
  287. RunRecipe,
  288. RunCleanRecipe,
  289. SkipCurrentStep,
  290. ResumeRecipe,
  291. AbortRecipe,
  292. Reset,
  293. LeakCheck,
  294. GasLeakCheck,
  295. DeleteLeakCheck,
  296. MFCVerification,
  297. AllMFCVerification,
  298. SwitchOffBuzzer,
  299. // Lift pin & Guide pin
  300. MoveLiftPin,
  301. MoveGuidePin,
  302. StartAutoRun,
  303. StopAutoRun,
  304. PauseAutoRun,
  305. ResumeAutoRun,
  306. InitAll,
  307. AckError,
  308. TmRun,
  309. TmStop,
  310. PmAuto,
  311. PmManual,
  312. //PmOnline,
  313. //PmOffline,
  314. PmError,
  315. JobAuto,
  316. JobManual,
  317. JobRun,
  318. JobStop,
  319. JobAbort,
  320. JobPmLoadRecipe,
  321. JobTmLoadRecipe,
  322. JobTmRun,
  323. JobTmStop,
  324. JobPmOnline,
  325. JobPmOffline,
  326. JobPmProcessDone,
  327. JobTmRecovered,
  328. Cycle,
  329. Online,
  330. Offline,
  331. ControlPressure,
  332. AbortControlPressure,
  333. Include,
  334. Exclude
  335. }
  336. public enum MovementPosition
  337. {
  338. Down, Up, Left, Right, Middle, Unknown
  339. }
  340. public enum RState
  341. {
  342. Init,
  343. Running,
  344. End,
  345. Failed,
  346. Timeout,
  347. Paused,
  348. }
  349. }