1234567891011121314151617181920212223242526272829303132333435363738394041 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Aitex.Triton160.Common
- {
- public enum PMState
- {
- Init,
- Idle,
- Vent,
- Feed,
-
- Pumping,
- StopPumping,
- GasFlowing,
- StopGasFlowing,
- RfPowering,
- CyclePurge,
- LinePump,
- TankPump,
- ContainerPump,
- LoadProcessRecipe,
- ProcessHighVac,
- PreProcess,
- Processing,
- PostProcess,
- LeakCheck,
- Error,
- }
- }
|