123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589 |
- using Aitex.Core.Common;
- using Aitex.Core.RT.DataCenter;
- using Aitex.Core.RT.Device;
- using Aitex.Core.RT.Device.Unit;
- using Aitex.Core.RT.Event;
- using Aitex.Core.RT.Log;
- using Aitex.Core.RT.OperationCenter;
- using Aitex.Core.RT.SCCore;
- using Aitex.Core.Util;
- using MECF.Framework.Common.CommonData;
- using MECF.Framework.Common.Communications;
- using MECF.Framework.Common.Equipment;
- using MECF.Framework.Common.SubstrateTrackings;
- using MECF.Framework.RT.EquipmentLibrary.HardwareUnits.LoadPorts.LoadPortBase;
- using MECF.Framework.RT.EquipmentLibrary.HardwareUnits.Robot;
- using MECF.Framework.RT.EquipmentLibrary.HardwareUnits.Robots.RobotBase;
- using System;
- using System.Collections.Generic;
- using System.Diagnostics;
- using System.Linq;
- using System.Text;
- using System.Threading;
- using EventType = Aitex.Core.RT.Event.EventType;
- namespace MECF.Framework.RT.EquipmentLibrary.HardwareUnits.Robots.HRC100Robots.GM201LVPRobot
- {
- public class YaskawaRobotMessage : AsciiMessage
- {
- public int UNo { get; set; }
- public int SeqNo { get; set; }
- public string Status { get; set; }
- public string Ackcd { get; set; }
- public string Command { get; set; }
- public string[] Data { get; set; }
- public string ErrorCode { get; set; }
- public string EvNo { get; set; }
- public string EvDate { get; set; }
- public string EvData { get; set; }
- }
- public class GM201LVPRobot : RobotBaseDevice, IConnection
- {
- //public int UnitNumber
- //{
- // get; private set;
- //}
- private bool isSimulatorMode;
- private string _scRoot;
- private bool _isError;
- public GM201LVPTokenGenerator SeqnoGenerator { get; private set; }
- public bool IsEnableSeqNo { get; private set; }
- public bool IsEnableCheckSum { get; private set; }
- public int CurrentSeqNo { get; set; }
- public string PortName;
- private string _address;
- private bool _enableLog;
- private GM201LVPRobotConnection _connection;
- private R_TRIG _trigError = new R_TRIG();
- private R_TRIG _trigCommunicationError = new R_TRIG();
- private R_TRIG _trigRetryConnect = new R_TRIG();
- public string Address => _address;
- private PeriodicJob _thread;
- private object _locker = new object();
- private LinkedList<HandlerBase> _lstHandlers = new LinkedList<HandlerBase>();
- private LinkedList<HandlerBase> _lstMonitorHandler = new LinkedList<HandlerBase>();
- private IoSensor _diRobotReady = null; //Normal ON
- private IoSensor _diRobotBlade1WaferOn = null; //Off when wafer present
- private IoSensor _diRobotBlade2WaferOn = null;
- private IoSensor _diRobotError = null; //Normal ON
- private IoSensor _diTPinUse = null;
- private IoTrigger _doRobotHold = null; // Normal ON
- public ModuleName CurrentInteractiveModule { get; private set; }
- public bool IsConnected => throw new NotImplementedException();
- public float CurrentThetaPosition { get; private set; }
- public float CurrentExtensionPosition { get; private set; }
- public float CurrentArm1Position { get; private set; }
- public float CurrentArm2Position { get; private set; }
- public float CurrentZPosition { get; private set; }
- public float CommandThetaPosition { get; private set; }
- public float CommandExtensionPosition { get; private set; }
- public float CommandArm1Position { get; private set; }
- public float CommandArm2Position { get; private set; }
- public float CommandZPosition { get; private set; }
- public int SpeedLevel { get; private set; }
- public int SpeedLevelSetting => SC.GetValue<int>($"{Name}.RobotSpeed");
- public string ReadMemorySpec { get; private set; }
- public string ReadTransferStation { get; private set; }
- public int ReadSlotNumber { get; private set; }
- public string ReadArmPosture { get; private set; }
- public RobotArmEnum ReadBladeNo { get; private set; }
- public GM201LVPPositonEnum ReadPositionType { get; private set; }
- public float ReadThetaPosition { get; private set; }
- public float ReadExtensionPosition { get; private set; }
- public float ReadArm1Position { get; private set; }
- public float ReadArm2Position { get; private set; }
- public float ReadZPosition { get; private set; }
- public Dictionary<string, string> ReadStationItemValues { get; private set; } = new Dictionary<string, string>();
- public Dictionary<string, string> ReadStationItemContents { get; private set; } = new Dictionary<string, string>();
- public string ReadParameterType { get; private set; }
- public string ReadParameterNo { get; private set; }
- public string ReadParameterValue { get; private set; }
- public bool IsManipulatorBatteryLow { get; private set; }
- public bool IsCommandExecutionReady { get; private set; }
- public bool IsServoON { get; private set; }
- public bool IsErrorOccurred { get; private set; }
- public bool IsControllerBatteryLow { get; private set; }
- public bool IsCheckInterlockWaferPresenceOnBlade1 { get; private set; }
- public bool IsCheckInterlockWaferPresenceOnBlade2 { get; private set; }
- public bool IsCheckInterlockWaferPresenceOnBlade3 { get; private set; }
- public bool IsCheckInterlockWaferPresenceOnBlade4 { get; private set; }
- public bool IsCheckInterlockWaferPresenceOnBlade5 { get; private set; }
- public string RobotSoftwareVersion { get; private set; }
- public string ReadMappingTransferStation { get; private set; }
- public int ReadMappingSlotNumbers { get; private set; }
- public string ReadSlotMap { get; private set; }
- public MaterialType _MaterialType { get; set; }
- private int _timeLimitPick => SC.GetValue<int>($"{Name}.PickTimeout");
- private int _timeLimitPlace => SC.GetValue<int>($"{Name}.PlaceTimeout");
- private int _timeLimitHome => SC.GetValue<int>($"{Name}.HomeTimeout");
- private int _timeLimitMotion => SC.GetValue<int>($"{Name}.MotionTimeout");
- public Dictionary<string, float> ReadMappingCalibrationResult { get; private set; }
- public Dictionary<string, string> ReadRobotParameterResult { get; private set; } = new Dictionary<string, string>();
- public enum MaterialType
- {
- Carrier,
- Wafer
- }
- private Dictionary<string, string> _moduleAssociateStationDic;
- public override Dictionary<string, string> ModuleAssociateStationDic
- {
- get
- {
- return _moduleAssociateStationDic;
- }
- set
- {
- _moduleAssociateStationDic = value;
- }
- }
- private Dictionary<string, string> _moduleAssociateHandDic;
- public Dictionary<string, string> ModuleAssociateHandDic
- {
- get
- {
- return _moduleAssociateHandDic;
- }
- set
- {
- _moduleAssociateHandDic = value;
- }
- }
- private IoAlarmSignal _tpStatus = null;
- public GM201LVPRobot(string module, string name, string scRoot, MaterialType material, IoSensor[] dis, IoTrigger[] dos) : base(module, name)
- {
- Module = module;
- Name = name;
- _MaterialType = material;
- isSimulatorMode = SC.ContainsItem("System.IsSimulatorMode") ? SC.GetValue<bool>("System.IsSimulatorMode") : false;
- _scRoot = scRoot;
- _address = SC.GetStringValue($"{Name}.Address");
- _enableLog = SC.GetValue<bool>($"{Name}.EnableLogMessage");
- //UnitNumber = SC.GetValue<int>($"{_scRoot}.{Name}.UnitNumber");
- //IsEnableCheckSum = SC.GetValue<bool>($"{_scRoot}.{Name}.EnableCheckSum");
- //IsEnableSeqNo = SC.GetValue<bool>($"{_scRoot}.{Name}.EnableSeqNo");
- //SpeedLevelSetting = SC.GetValue<int>($"{Name}.SpeedLevel");
- _connection = new GM201LVPRobotConnection(this, _address);
- _connection.EnableLog(_enableLog);
- //SeqnoGenerator = new GM201LVPTokenGenerator($"{_scRoot}.{Name}.CommunicationToken");
- if (dis != null && dis.Length >= 5)
- {
- _diRobotReady = dis[0];
- _diRobotBlade1WaferOn = dis[1];
- _diRobotBlade2WaferOn = dis[2];
- _diRobotError = dis[3];
- _diTPinUse = dis[4];
- _diRobotError.OnSignalChanged += _diRobotError_OnSignalChanged;
- _diTPinUse.OnSignalChanged += _diTPinUse_OnSignalChanged;
- }
- if (dos != null && dos.Length >= 1)
- {
- _doRobotHold = dos[0];
- }
- ConnectionManager.Instance.Subscribe($"{Name}", _connection);
- _thread = new PeriodicJob(10, OnTimer, $"{Module}.{Name} MonitorHandler", true);
- ReadStationItemContents.Add("00", "Upward offset");
- ReadStationItemContents.Add("01", "Downward offset");
- ReadStationItemContents.Add("02", "Grip position offset");
- ReadStationItemContents.Add("06", "G2/P3 offset in the extending direction");
- ReadStationItemContents.Add("08", "Put downward offset");
- ReadStationItemContents.Add("70", "Get operation Movet_grip function yes/no");
- ReadStationItemContents.Add("71", "Get operation rising pattern");
- ReadStationItemContents.Add("80", "Put operation Move_grip function yes/no");
- ReadStationItemContents.Add("81", "Put operation dropping pattern");
- ReadStationItemContents.Add("50", "Slot Numbers");
- ReadStationItemContents.Add("30", "Slot pitch(Left elbow,Blade1)");
- ReadStationItemContents.Add("31", "Slot pitch(Left elbow,Blade2)");
- ReadStationItemContents.Add("32", "Slot pitch(Right elbow,Blade1)");
- ReadStationItemContents.Add("33", "Slot pitch(Right elbow,Blade2)");
- if (Name == "CarrierRobot")
- {
- _tpStatus = DEVICE.GetDevice<IoAlarmSignal>($"PM1.AlarmSignaFOUPRobotTPStatusWarning");
- }
- else
- {
- _tpStatus = DEVICE.GetDevice<IoAlarmSignal>($"PM1.AlarmSignaWaferRobotTPStatusWarning");
- }
- ResetPropertiesAndResponses();
- RegisterSpecialData();
- RegisterAlarm();
- }
- protected override void SubscribeWaferLocation()
- {
- }
- private void RegisterAlarm()
- {
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error020", $"{Name} Robot Occurred Error:Secondary power off.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error021", $"{Name} Robot Occurred Error:Secondary power on.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error040", $"{Name} Robot Occurred Error:In TEACH Mode.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error050", $"{Name} Robot Occurred Error:Unit is in motion.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error051", $"{Name} Robot Occurred Error:Unable to set pitch between slots.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error052", $"{Name} Robot Occurred Error:Unable to restart motion.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error053", $"{Name} Robot Occurred Error:Ready position move incomplete.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error054", $"{Name} Robot Occurred Error:Alignment Ready position move incomplete.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error055", $"{Name} Robot Occurred Error:Improper station type.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error058", $"{Name} Robot Occurred Error:Command not supported 1-1.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error059", $"{Name} Robot Occurred Error:Invalid transfer point.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error05A", $"{Name} Robot Occurred Error:Linear motion failed.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error05C", $"{Name} Robot Occurred Error:Unable to reference wafer alignment result.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error05D", $"{Name} Robot Occurred Error:Unable to perform arm calibration.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error05E", $"{Name} Robot Occurred Error:Unable to read mapping data.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error05F", $"{Name} Robot Occurred Error:Data Upload/Download in progress.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error061", $"{Name} Robot Occurred Error:Unable to motion.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error064", $"{Name} Robot Occurred Error:Lifter interference error.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error070", $"{Name} Robot Occurred Error:Bottom slot position record incomplete.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error071", $"{Name} Robot Occurred Error:Top slot position record incomplete.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error088", $"{Name} Robot Occurred Error:Position generating error 1.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error089", $"{Name} Robot Occurred Error:Position generating error 2.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error08A", $"{Name} Robot Occurred Error:Position generating error 3.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error08B", $"{Name} Robot Occurred Error:Position generating error 4.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error08C", $"{Name} Robot Occurred Error:Position generating error 5.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error08D", $"{Name} Robot Occurred Error:Position generating error 6.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error090", $"{Name} Robot Occurred Error:Host parameter out of range.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error0A0", $"{Name} Robot Occurred Error:Alignment motion error.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error0E0", $"{Name} Robot Occurred Error:Teach position adjustmentoffset amount limit error.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error0F0", $"{Name} Robot Occurred Error:Voltage drop warning.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error*06", $"{Name} Robot Occurred Error:Amplifier Type Mismatch.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error*07", $"{Name} Robot Occurred Error:Encoder Type Mismatch.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error*10", $"{Name} Robot Occurred Error:Overflow Current.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error*30", $"{Name} Robot Occurred Error:Regeneration Error Detected.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error*40", $"{Name} Robot Occurred Error:Excess Voltage (converter).", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error*41", $"{Name} Robot Occurred Error:Insufficient Voltage.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error*45", $"{Name} Robot Occurred Error:Brake circuit error 1.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error*46", $"{Name} Robot Occurred Error:Converter ready signal error.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error*47", $"{Name} Robot Occurred Error:Input power error.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error*48", $"{Name} Robot Occurred Error:Converter main circuit chargeerror.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error*49", $"{Name} Robot Occurred Error:Amplifier ready signal error.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error*51", $"{Name} Robot Occurred Error:Excessive Speed.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error*71", $"{Name} Robot Occurred Error:Momentary Overload (Motor).", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error*72", $"{Name} Robot Occurred Error:Continuous Overload (Motor).", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error*78", $"{Name} Robot Occurred Error:Overload (Converter).", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error*7B", $"{Name} Robot Occurred Error:Amplifier overheat.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error*7C", $"{Name} Robot Occurred Error:Continuous Overload(Amplifier).", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error*7D", $"{Name} Robot Occurred Error:Momentary Overload.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error*81", $"{Name} Robot Occurred Error:Absolute Encoder Back-upError.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error*83", $"{Name} Robot Occurred Error:Absolute Encoder Battery.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error*84", $"{Name} Robot Occurred Error:Encoder Data Error 2-1.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error*85", $"{Name} Robot Occurred Error:Encoder Excessive Speed.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error*86", $"{Name} Robot Occurred Error:Encoder Overheat.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error*88", $"{Name} Robot Occurred Error:Encoder error 1.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error*89", $"{Name} Robot Occurred Error:Encoder Command failed.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error*8A", $"{Name} Robot Occurred Error:Encoder multi-turn range.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error*8C", $"{Name} Robot Occurred Error:Encoder Reset not completed.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error*98", $"{Name} Robot Occurred Error:Servo parameter error 1.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error*9A", $"{Name} Robot Occurred Error:Feedback Over Flow.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error*B4", $"{Name} Robot Occurred Error:Servo Control Board Failure.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error*BC", $"{Name} Robot Occurred Error:Encoder error 2.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error*C1", $"{Name} Robot Occurred Error:Motor runaway detection.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error*C9", $"{Name} Robot Occurred Error:Encoder Communication.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error*CE", $"{Name} Robot Occurred Error:Encoder error 3.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error*CF", $"{Name} Robot Occurred Error:Encoder error 4.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error*D0", $"{Name} Robot Occurred Error:Position deviation error.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error*D1", $"{Name} Robot Occurred Error:Position deviation saturation.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error*D2", $"{Name} Robot Occurred Error:Motor directive position error.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error*D4", $"{Name} Robot Occurred Error:Servo Tracking Error.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error*F1", $"{Name} Robot Occurred Error:Phase loss.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorE*1", $"{Name} Robot Occurred Error:Positioning Timeout.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorE*D", $"{Name} Robot Occurred Error:Command not supported 1-2.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorE*E", $"{Name} Robot Occurred Error:Communication Error(internal controller) 1-1.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorE*F", $"{Name} Robot Occurred Error:Servo control board responsetimeout 1..", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error701", $"{Name} Robot Occurred Error:ROM Error.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error703", $"{Name} Robot Occurred Error:Communication Error(internal controller) 2-1.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error704", $"{Name} Robot Occurred Error:Communication Error (internal controller) 2-2.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error705", $"{Name} Robot Occurred Error:Communication Error(internal controller) 2-3.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error706", $"{Name} Robot Occurred Error:Servo system error 1.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error707", $"{Name} Robot Occurred Error:Servo system error 2.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error709", $"{Name} Robot Occurred Error:Current feedback error.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error70A", $"{Name} Robot Occurred Error:Power Lost.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error70B", $"{Name} Robot Occurred Error:Rush Current PreventionRelay Abnormal.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error70C", $"{Name} Robot Occurred Error:Converter mismatch.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error70F", $"{Name} Robot Occurred Error:Servo control board response timeout 2..", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error713", $"{Name} Robot Occurred Error:DB error.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error714", $"{Name} Robot Occurred Error:Converter charge Error.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error715", $"{Name} Robot Occurred Error:Servo OFF Status Error 1.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error716", $"{Name} Robot Occurred Error:Servo ON Status Error 1.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error717", $"{Name} Robot Occurred Error:Servo OFF Status Error 2.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error718", $"{Name} Robot Occurred Error:Servo ON Status Error 2.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error719", $"{Name} Robot Occurred Error:Servo On Abnormal.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error71A", $"{Name} Robot Occurred Error:Brake circuit error 2.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error71B", $"{Name} Robot Occurred Error:Brake circuit error 3.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error71C", $"{Name} Robot Occurred Error:Power relay error.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error721", $"{Name} Robot Occurred Error:Servo parameter error 2.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error722", $"{Name} Robot Occurred Error:Servo parameter error 3.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error725", $"{Name} Robot Occurred Error:Converter Overheat.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error726", $"{Name} Robot Occurred Error:Communication Error(internal controller) 2-4.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error727", $"{Name} Robot Occurred Error:Command not supported 1-2.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error728", $"{Name} Robot Occurred Error:Communication Error(internal controller) 2-5.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error729", $"{Name} Robot Occurred Error:Servo system error 3.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error72A", $"{Name} Robot Occurred Error:Servo system error 4.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error72B", $"{Name} Robot Occurred Error:Servo parameter error 4.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error730", $"{Name} Robot Occurred Error:Amp module disconnected..", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error732", $"{Name} Robot Occurred Error:Servo parameter error 5.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error733", $"{Name} Robot Occurred Error:Servo parameter error 6.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error734", $"{Name} Robot Occurred Error:Servo parameter error 7.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error735", $"{Name} Robot Occurred Error:Servo parameter error 8.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error73F", $"{Name} Robot Occurred Error:Undefined Error.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error740", $"{Name} Robot Occurred Error:Encoder Status Error.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error741", $"{Name} Robot Occurred Error:Servo system error 5.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error742", $"{Name} Robot Occurred Error:Servo system error 6.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error743", $"{Name} Robot Occurred Error:Servo system error 7.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error744", $"{Name} Robot Occurred Error:Servo system error 8.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error745", $"{Name} Robot Occurred Error:Servo system error 9.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error746", $"{Name} Robot Occurred Error:Servo system error 10.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error74A", $"{Name} Robot Occurred Error:Servo system error 11.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error74B", $"{Name} Robot Occurred Error:Servo system error 12.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error74C", $"{Name} Robot Occurred Error:Servo system error 13.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error74D", $"{Name} Robot Occurred Error:Servo system error 14.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error7A0", $"{Name} Robot Occurred Error:Communication Error.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error7A1", $"{Name} Robot Occurred Error:Communication Error(internal controller) 3-2.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error7A2", $"{Name} Robot Occurred Error:Command not supported 3-1.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error7A3", $"{Name} Robot Occurred Error:Data buffer full.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error7A4", $"{Name} Robot Occurred Error:Command not supported 3-2.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error7A5", $"{Name} Robot Occurred Error:Encoder data error 3-1.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error7A6", $"{Name} Robot Occurred Error:Command not supported 3-3.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error7AE", $"{Name} Robot Occurred Error:Communication Error(internal controller) 1-2.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error7AF", $"{Name} Robot Occurred Error:Communication Error(internal controller) 1-3.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error7B0", $"{Name} Robot Occurred Error:CCD sensor abnormal 1.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error7B4", $"{Name} Robot Occurred Error:CCD sensor abnormal 2.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error7B5", $"{Name} Robot Occurred Error:CCD sensor abnormal 3.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error7C0", $"{Name} Robot Occurred Error:PAIF board Failure 1.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error7C1", $"{Name} Robot Occurred Error:PAIF board Failure 2.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error7C2", $"{Name} Robot Occurred Error:PAIF board Failure 3.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error7C3", $"{Name} Robot Occurred Error:CCD sensor abnormal 4.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error7CF", $"{Name} Robot Occurred Error:PAIF board disconnected.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error7D0", $"{Name} Robot Occurred Error:PAIF board Failure 4.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error7D1", $"{Name} Robot Occurred Error:PAIF board Failure 5.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error900", $"{Name} Robot Occurred Error:Character Interval Timeout.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error910", $"{Name} Robot Occurred Error:Received Data ChecksumError.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error920", $"{Name} Robot Occurred Error:Unit Number Error.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error930", $"{Name} Robot Occurred Error:Undefined CommandReceived.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error940", $"{Name} Robot Occurred Error:Message Parameter Error.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error950", $"{Name} Robot Occurred Error:Receiving Time-out Error for Confirmation of Execution Completion.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error960", $"{Name} Robot Occurred Error:Incorrect sequence number.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error961", $"{Name} Robot Occurred Error:Duplicated message.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error970", $"{Name} Robot Occurred Error:Delimiter error.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error9A1", $"{Name} Robot Occurred Error:Message buffer overflow.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error9C0", $"{Name} Robot Occurred Error:LAN device setting error.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error9C1", $"{Name} Robot Occurred Error:IP address error.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error9C2", $"{Name} Robot Occurred Error:Subnet mask error.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error9C3", $"{Name} Robot Occurred Error:Default gateway error.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error9D0", $"{Name} Robot Occurred Error:Ethernet receive error.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error9E0", $"{Name} Robot Occurred Error:During operation themaintenance tool.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}Error9E1", $"{Name} Robot Occurred Error:The data abnormal.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorA01", $"{Name} Robot Occurred Error:Re-detection of a powerSupply voltage fall.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorA10", $"{Name} Robot Occurred Error:External emergency stop.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorA20", $"{Name} Robot Occurred Error:T.P emergency stop.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorA21", $"{Name} Robot Occurred Error:Interlock board failure 0.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorA30", $"{Name} Robot Occurred Error:Emergency stop.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorA40", $"{Name} Robot Occurred Error:Controller Fan 1 Error.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorA41", $"{Name} Robot Occurred Error:Controller Fan 2 Error.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorA42", $"{Name} Robot Occurred Error:Controller Fan 3 Error.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorA45", $"{Name} Robot Occurred Error:Unit fan 1 error.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorA46", $"{Name} Robot Occurred Error:Unit fan 2 error.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorA4F", $"{Name} Robot Occurred Error:Controller Battery Alarm.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorAC0", $"{Name} Robot Occurred Error:Safety fence signal detection.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorAC9", $"{Name} Robot Occurred Error:Protection stop signal.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorAE0", $"{Name} Robot Occurred Error:HOST Mode Switching error.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorAE1", $"{Name} Robot Occurred Error:TEACH Mode Switching Error.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorAE8", $"{Name} Robot Occurred Error:Deadman switch error.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorAF0", $"{Name} Robot Occurred Error:Interlock board failure 1.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorAF1", $"{Name} Robot Occurred Error:Interlock board failure 2.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorAF2", $"{Name} Robot Occurred Error:Interlock board failure 3.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorAF3", $"{Name} Robot Occurred Error:Interlock board failure 4.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorAF4", $"{Name} Robot Occurred Error:Interlock board failure 5.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorAF5", $"{Name} Robot Occurred Error:Interlock board failure 6.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorAF6", $"{Name} Robot Occurred Error:Interlock board failure 7.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorAF8", $"{Name} Robot Occurred Error:Input compare error 1.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorAF9", $"{Name} Robot Occurred Error:Input compare error 2.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorAFA", $"{Name} Robot Occurred Error:Input compare error 3.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorAFB", $"{Name} Robot Occurred Error:Input compare error 4.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorAFC", $"{Name} Robot Occurred Error:Input compare error 5.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorAFD", $"{Name} Robot Occurred Error:Input compare error 6.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorAFE", $"{Name} Robot Occurred Error:Input compare error 7.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorAFF", $"{Name} Robot Occurred Error:Input compare error 8.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB10", $"{Name} Robot Occurred Error:Axis-1 Speed Limit Detection.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB11", $"{Name} Robot Occurred Error:Axis-2 Speed Limit Detection.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB12", $"{Name} Robot Occurred Error:Axis-3 Speed Limit Detection.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB13", $"{Name} Robot Occurred Error:Axis-4 Speed Limit Detection.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB14", $"{Name} Robot Occurred Error:Axis-5 Speed Limit Detection.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB20", $"{Name} Robot Occurred Error:Axis-1 Positive (+) DirectionSoftware-limit Detection 1.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB21", $"{Name} Robot Occurred Error:Axis-2 Positive (+) DirectionSoftware-limit Detection 1.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB22", $"{Name} Robot Occurred Error:Axis-3 Positive (+) DirectionSoftware-limit Detection 1.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB23", $"{Name} Robot Occurred Error:Axis-4 Positive (+) DirectionSoftware-limit Detection 1.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB24", $"{Name} Robot Occurred Error:Axis-5 Positive (+) DirectionSoftware-limit Detection 1.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB28", $"{Name} Robot Occurred Error:Axis-1 Positive (+) Direction Software-limit Detection 2.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB29", $"{Name} Robot Occurred Error:Axis-2 Positive (+) DirectionSoftware-limit Detection 2.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB2A", $"{Name} Robot Occurred Error:Axis-3 Positive (+) DirectionSoftware-limit Detection 2.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB2B", $"{Name} Robot Occurred Error:Axis-4 Positive (+) DirectionSoftware-limit Detection 2.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB2C", $"{Name} Robot Occurred Error:Axis-5 Positive (+) DirectionSoftware-limit Detection 2.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB30", $"{Name} Robot Occurred Error:Axis-1 Negative (-) DirectionSoftware-limit Detection 1.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB31", $"{Name} Robot Occurred Error:Axis-2 Negative (-) DirectionSoftware-limit Detection 1.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB32", $"{Name} Robot Occurred Error:Axis-3 Negative (-) Direction Software-limit Detection 1.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB33", $"{Name} Robot Occurred Error:Axis-4 Negative (-) DirectionSoftware-limit Detection 1.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB34", $"{Name} Robot Occurred Error:Axis-5 Negative (-) DirectionSoftware-limit Detection 1.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB38", $"{Name} Robot Occurred Error:Axis-1 Negative (-) DirectionSoftware-limit Detection 2.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB39", $"{Name} Robot Occurred Error:Axis-2 Negative (-) DirectionSoftware-limit Detection 2.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB3A", $"{Name} Robot Occurred Error:Axis-3 Negative (-) Direction Software-limit Detection 2.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB3B", $"{Name} Robot Occurred Error:Axis-4 Negative (-) DirectionSoftware-limit Detection 2.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB3C", $"{Name} Robot Occurred Error:Axis-5 Negative (-) DirectionSoftware-limit Detection 2.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB40", $"{Name} Robot Occurred Error:Access Permission Signal 1Time-out Error.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB41", $"{Name} Robot Occurred Error:Access Permission Signal 2Time-out Error.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB42", $"{Name} Robot Occurred Error:Access Permission Signal 3Time-out Error.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB43", $"{Name} Robot Occurred Error:Access Permission Signal 4Time-out Error.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB44", $"{Name} Robot Occurred Error:Access Permission Signal 5 Time-out Error.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB45", $"{Name} Robot Occurred Error:Access Permission Signal 6Time-out Error.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB46", $"{Name} Robot Occurred Error:Access Permission Signal 7Time-out Error.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB47", $"{Name} Robot Occurred Error:Access Permission Signal 8Time-out Error.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB48", $"{Name} Robot Occurred Error:Access Permission Signal 9Time-out Error.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB49", $"{Name} Robot Occurred Error:Access Permission Signal 10 Time-out Error.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB4A", $"{Name} Robot Occurred Error:Access Permission Signal 11Time-out Error.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB4B", $"{Name} Robot Occurred Error:Access Permission Signal 12Time-out Error.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB4C", $"{Name} Robot Occurred Error:Access Permission Signal 13Time-out Error.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB4D", $"{Name} Robot Occurred Error:Access Permission Signal 14Time-out Error.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB4E", $"{Name} Robot Occurred Error:Access Permission Signal 15Time-out Error.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB4F", $"{Name} Robot Occurred Error:Access Permission Signal 16Time-out Error.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB60", $"{Name} Robot Occurred Error:Access Permission to P/A Stage Time-out Error 1.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB61", $"{Name} Robot Occurred Error:Access Permission to P/AStage Time-out Error 2.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB62", $"{Name} Robot Occurred Error:Access Permission to P/A Stage Time-out Error 3.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB63", $"{Name} Robot Occurred Error:Access Permission to P/A Stage Time-out Error 4.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB64", $"{Name} Robot Occurred Error:Access Permission to P/AStage Time-out Error 5.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB65", $"{Name} Robot Occurred Error:Access Permission to P/AStage Time-out Error 6.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB66", $"{Name} Robot Occurred Error:Access Permission to P/AStage Time-out Error 7.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB68", $"{Name} Robot Occurred Error:P/A motion permission timeout error.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB70", $"{Name} Robot Occurred Error:SS signal detection.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB80", $"{Name} Robot Occurred Error:Fork 1/Pre-aligner: Wafer Presence Confirmation Time-out Error 1.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB81", $"{Name} Robot Occurred Error:Fork 1/Pre-aligner: WaferAbsence Confirmation Time- out Error 1.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB82", $"{Name} Robot Occurred Error:Fork 1/Pre-aligner: Wafer Presence Confirmation Time-out Error 2.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB83", $"{Name} Robot Occurred Error:Fork 1/Pre-aligner: WaferAbsence Confirmation Time- out Error 2.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB88", $"{Name} Robot Occurred Error:Wafer is not found on the Wafer transfer after having completed the wafer pick operation from source (by sensor information).Check the wafer status on the Wafer transfer.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB89", $"{Name} Robot Occurred Error:Wafer is not found on the Wafer transfer after having completed the wafer pick operation from source (by sensor information).Check the wafer status on the Wafer transfer.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB8A", $"{Name} Robot Occurred Error:Wafer is not found on the Wafer transfer after having completed the wafer place operation to the target(by sensor information).Check the wafer status on the Wafer transfer.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB8B", $"{Name} Robot Occurred Error:Wafer is not found on the Wafer transfer after having completed the wafer place operation to the target(by sensor information).Check the wafer status on the Wafer transfer.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB8F", $"{Name} Robot Occurred Error:Fork 1: Plunger non-operationerror.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB90", $"{Name} Robot Occurred Error:Fork 2: Wafer Presence Confirmation Time-out Error 1.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB91", $"{Name} Robot Occurred Error:Fork 2: Wafer AbsenceConfirmation Time-out Error 1.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB92", $"{Name} Robot Occurred Error:Fork 2: Wafer PresenceConfirmation Time-out Error 2.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB93", $"{Name} Robot Occurred Error:Fork 2: Wafer AbsenceConfirmation Time-out Error 2.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB98", $"{Name} Robot Occurred Error:Lifter up sensor Time-outError 1.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB99", $"{Name} Robot Occurred Error:Lifter up sensor Time-out Error 2.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB9A", $"{Name} Robot Occurred Error:Lifter down sensor Time-outError 1.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB9B", $"{Name} Robot Occurred Error:Lifter down sensor Time-outError 2.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorB9F", $"{Name} Robot Occurred Error:Fork 2: Plunger non-operationerror.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorBA0", $"{Name} Robot Occurred Error:Fork 1/Pre-aligner: WaferAbsence Error.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorBA1", $"{Name} Robot Occurred Error:Fork 1: Sensor StatusMismatch.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorBA8", $"{Name} Robot Occurred Error:Wafer is found on the Wafer transfer when started the wafer pick operation from source (by sensor information).Check the wafer status on the Wafer transfer.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorBA9", $"{Name} Robot Occurred Error:Wafer is found on the Wafer transfer when started the wafer pick operation from source (by sensor information).Check the wafer status on the Wafer transfer.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorBAA", $"{Name} Robot Occurred Error:Wafer is found on the Wafer transfer when started the wafer place operation to the target(by sensor information).Check the wafer status on the Wafer transfer.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorBAB", $"{Name} Robot Occurred Error:Wafer is found on the Wafer transfer when started the wafer place operation to the target(by sensor information).Check the wafer status on the Wafer transfer.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorBAC", $"{Name} Robot Occurred Error:Grip sensor status mismatch.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorBAD", $"{Name} Robot Occurred Error:Lifter/Grip sensor statusmismatch.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorBB0", $"{Name} Robot Occurred Error:Fork 2: Wafer Absence Error.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorBB1", $"{Name} Robot Occurred Error:Fork 2: Sensor StatusMismatch.", EventLevel.Alarm, EventType.EventUI_Notify));
- EV.Subscribe(new EventItem("Alarm", $"{Name}ErrorBB8", $"{Name} Robot Occurred Error:Lifter up sensor status Error 1.", EventLevel.Alarm, EventType.EventUI_Notify));
- }
- public void NotifyAlarmByErrorCode(string errorcode)
- {
- EV.Notify($"{Name}Error{errorcode}");
- }
- private void _diTPinUse_OnSignalChanged(IoSensor arg1, bool arg2)
- {
- SetMaintenanceMode(!arg1.Value);
- }
- private void _diRobotError_OnSignalChanged(IoSensor arg1, bool arg2)
- {
- if (arg1.Value == false)
- {
- lock (_locker)
- {
- _lstHandlers.AddLast(new GM201LVPRobotReadHandler(this, "RSTS"));
- }
- OnError("RobotError");
- }
- }
- private void ResetPropertiesAndResponses()
- {
- }
- private void RegisterSpecialData()
- {
- if (Name != "CarrierRobot")
- {
- DATA.Subscribe($"{Name}.CurrentArm1Position", () => CurrentArm1Position);
- DATA.Subscribe($"{Name}.CurrentArm2Position", () => CurrentArm2Position);
- DATA.Subscribe($"{Name}.CurrentZPosition", () => CurrentZPosition);
- DATA.Subscribe($"{Name}.IsWaferPresenceOnBlade2", () => IsWaferPresenceOnBlade2);
- DATA.Subscribe($"{Name}.IsWaferPresenceOnBlade3", () => IsWaferPresenceOnBlade3);
- DATA.Subscribe($"{Name}.IsWaferPresenceOnBlade4", () => IsWaferPresenceOnBlade4);
- DATA.Subscribe($"{Name}.IsWaferPresenceOnBlade5", () => IsWaferPresenceOnBlade5);
- }
- DATA.Subscribe($"{Name}.TPStatus", () => _tpStatus != null && _tpStatus.Value);
- DATA.Subscribe($"{Name}.CurrentExtensionPosition", () => CurrentExtensionPosition);
- DATA.Subscribe($"{Name}.CurrentThetaPosition", () => CurrentThetaPosition);
- DATA.Subscribe($"{Name}.IsManipulatorBatteryLow", () => IsManipulatorBatteryLow);
- DATA.Subscribe($"{Name}.IsCommandExecutionReady", () => IsCommandExecutionReady);
- DATA.Subscribe($"{Name}.IsServoON", () => IsServoON);
- DATA.Subscribe($"{Name}.IsErrorOccurred", () => IsErrorOccurred);
- DATA.Subscribe($"{Name}.IsControllerBatteryLow", () => IsControllerBatteryLow);
- DATA.Subscribe($"{Name}.IsWaferPresenceOnBlade1", () => IsWaferPresenceOnBlade1);
- DATA.Subscribe($"{Name}.MappingResult", () => ReadSlotMap);
- DATA.Subscribe($"{Name}.ReadRobotParameterResultDict", () => ReadRobotParameterResult);
- DATA.Subscribe($"{Name}.ErrorCode", () => ErrorCode);
- DATA.Subscribe($"{Name}.RobotSpeed", () => SpeedLevelSetting.ToString());
- OP.Subscribe($"{Name}.SetSpeed", InvokeSetSpeed);
- }
- private bool OnTimer()
- {
- try
- {
- _connection.MonitorTimeout();
- if (!_connection.IsConnected || _connection.IsCommunicationError)
- {
- lock (_locker)
- {
- _lstHandlers.Clear();
- _lstMonitorHandler.Clear();
- }
- _trigRetryConnect.CLK = !_connection.IsConnected;
- if (_trigRetryConnect.Q)
- {
- if (!_connection.Connect())
- {
- EV.PostAlarmLog(RobotModuleName.ToString(), $"Can not connect with {_connection.Address}, {Name}");
- }
- else
- {
- //_lstHandler.AddLast(new RobotHirataR4QueryPinHandler(this, _deviceAddress));
- //_lstHandler.AddLast(new RobotHirataR4SetCommModeHandler(this, _deviceAddress, EnumRfPowerCommunicationMode.Host));
- }
- }
- return true;
- }
- HandlerBase handler = null;
- lock (_locker)
- {
- if (!_connection.IsBusy)
- {
- if (_lstHandlers.Count > 0)
- {
- handler = _lstHandlers.First.Value;
- _connection.Execute(handler);
- _lstHandlers.RemoveFirst();
- }
- else
- {
- if (_lstMonitorHandler.Count > 0)
- {
- handler = _lstMonitorHandler.First.Value;
- _connection.Execute(handler);
- _lstMonitorHandler.RemoveFirst();
- }
- }
- }
- else
- {
- _connection.MonitorTimeout();
- _trigCommunicationError.CLK = _connection.IsCommunicationError;
- if (_trigCommunicationError.Q)
- {
- _lstHandlers.Clear();
- _lstMonitorHandler.Clear();
- //EV.PostAlarmLog(RobotModuleName.ToString(), $"{Module}.{Name} communication error, {_connection.LastCommunicationError}");
- OnError($"{Name} communication error, {_connection.LastCommunicationError}");
- //_trigActionDone.CLK = true;
- }
- }
- }
- }
- catch (Exception ex)
- {
- LOG.Write(ex);
- }
- return true;
- }
- public bool Connect()
- {
- return _connection.Connect();
- }
- public bool Disconnect()
- {
- return _connection.Disconnect();
- }
- public override bool IsReady()
- {
- //if (_diRobotReady!=null && !_diRobotReady.Value)
- // return false;
- if (_diRobotError != null && !_diRobotError.Value)
- return false;
- if (_diTPinUse != null && !_diTPinUse.Value)
- return false;
- return RobotState == RobotStateEnum.Idle && !IsBusy && !_connection.IsBusy && _lstHandlers.Count == 0 && !_connection.IsCommunicationError && _connection.IsConnected;
- }
- public override bool IsReady(out string reason)
- {
- reason = "";
- //if (_diRobotReady!=null && !_diRobotReady.Value)
- // return false;
- if (_diRobotError != null && !_diRobotError.Value)
- return false;
- if (_diTPinUse != null && !_diTPinUse.Value)
- return false;
- var ret = RobotState == RobotStateEnum.Idle && !IsBusy && !_connection.IsBusy && _lstHandlers.Count == 0 && !_connection.IsCommunicationError && _connection.IsConnected;
- if (!ret)
- {
- if (RobotState != RobotStateEnum.Idle)
- reason = "RobotState != RobotStateEnum.Idle";
- if (IsBusy)
- reason = "IsBusy";
- if (_lstHandlers.Count != 0)
- reason = "_lstHandlers.Count != 0";
- if (_connection.IsCommunicationError)
- reason = "_connection.IsCommunicationError";
- if (!_connection.IsConnected)
- reason = "!_connection.IsConnected";
- }
- return ret;
- }
- public bool ParseReadData(string _command, string[] rdata)
- {
- try
- {
- if (_command == "RSTS")
- {
- return ((rdata.Length == 3 || rdata.Length == 2) && ParseRSTSStatus(rdata));
- }
- if (_command == "RSLV") //Read the speed level
- {
- return (rdata.Length == 3 && ParseSpeedLevel(rdata[2]));
- }
- if (_command == "RPOS") //Reference current postion
- {
- return (rdata.Length > 1 && ParsePositionData(rdata));
- }
- if (_command == "RSTP") //Reference registered position, read the save postion for station
- {
- // return (rdata.Length > 6 && ParseRegisteredPositionData(rdata));
- return (rdata.Length == 7 && ParsePositionAxisData(rdata));
- }
- if (_command == "RSTR") //Reference station item value
- {
- return (rdata.Length == 4 && ParseStationData(rdata));
- }
- if (_command == "RPRM") //Reference the parameter values of the specified unit
- {
- return (rdata.Length == 3 && ParseParameterData(rdata));
- }
- if (_command == "RMSK") //Reference the interlock information
- {
- return (rdata.Length == 1 && ParseInterlockInfo(rdata));
- }
- if (_command == "RVER") //Reference the software version
- {
- return (rdata.Length == 2 && ParseSoftwareVersion(rdata));
- }
- if (_command == "RMAP") //Reference the slot map
- {
- return (rdata.Length > 2 && ParseSlotMap(rdata));
- }
- if (_command == "RMPD") //reference the mapping data
- {
- return (rdata.Length > 1 && ParseMappingData(rdata));
- }
- if (_command == "RMCA") // Reference the mapping calibration result
- {
- return (rdata.Length > 1 && ParseMappingCalibrationResult(rdata));
- }
- if (_command == "RERR") // Request ERR
- {
- return (rdata.Length > 2 && ParseERR(rdata));
- }
- return true;
- }
- catch (Exception ex)
- {
- LOG.Write(ex);
- return true;
- }
- }
- public bool ParseRSTSStatus(string[] status)
- {
- try
- {
- if (status.Length > 2)
- {
- //wafer robot
- int intstatus = Convert.ToInt16(status[2].Substring(5, 2), 16);
- IsWaferPresenceOnBlade5 = (((intstatus >> 4) & 0x1) == 0x1);
- IsWaferPresenceOnBlade4 = (((intstatus >> 3) & 0x1) == 0x1);
- IsWaferPresenceOnBlade3 = (((intstatus >> 2) & 0x1) == 0x1);
- IsWaferPresenceOnBlade2 = (((intstatus >> 1) & 0x1) == 0x1);
- IsWaferPresenceOnBlade1 = (((intstatus >> 0) & 0x1) == 0x1);
- }
- else
- {
- //foup robot
- int intstatus = Convert.ToInt16(status[1].Substring(5, 2), 16);
- IsWaferPresenceOnBlade5 = (((intstatus >> 4) & 0x1) == 0x1);
- IsWaferPresenceOnBlade4 = (((intstatus >> 3) & 0x1) == 0x1);
- IsWaferPresenceOnBlade3 = (((intstatus >> 2) & 0x1) == 0x1);
- IsWaferPresenceOnBlade2 = (((intstatus >> 1) & 0x1) == 0x1);
- IsWaferPresenceOnBlade1 = (((intstatus >> 0) & 0x1) == 0x1);
- }
- return true;
- }
- catch (Exception ex)
- {
- LOG.Write(ex);
- return true;
- }
- }
- public bool ParseSpeedLevel(string speedlevel)
- {
- try
- {
- int level = Convert.ToInt32(speedlevel);
- if (level < 1 || level > 100) return false;
- SpeedLevel = level;
- return true;
- }
- catch (Exception ex)
- {
- LOG.Write(ex);
- return false;
- }
- }
- public bool ParsePositionData(string[] pdata)
- {
- try
- {
- if (pdata[1] == "R" || pdata[1] == "F")
- {
- CommandZPosition = Convert.ToSingle(pdata[1]) / 1000;
- CommandThetaPosition = Convert.ToSingle(pdata[2]) / 1000;
- CommandExtensionPosition = Convert.ToSingle(pdata[3]) / 1000;
- return true;
- }
- return false;
- }
- catch (Exception ex)
- {
- LOG.Write(ex);
- return false;
- }
- }
- public bool ParsePositionAxisData(string[] pdata)
- {
- try
- {
- ReadMemorySpec = pdata[0];
- ReadTransferStation = pdata[1];
- if (ReadStationItemValues.ContainsKey(pdata[2]))
- ReadStationItemValues.Remove(pdata[2]);
- ReadStationItemValues.Add(pdata[2], pdata[3]);
- if (ReadRobotParameterResult.ContainsKey(ReadTransferStation))
- {
- ReadRobotParameterResult[ReadTransferStation] = $"{pdata[2]},{pdata[3]},{pdata[4]},{pdata[5]},{pdata[6]}";
- }
- else
- {
- ReadRobotParameterResult.Add(ReadTransferStation, $"{pdata[2]},{pdata[3]},{pdata[4]},{pdata[5]},{pdata[6]}");
- }
- return true;
- }
- catch (Exception ex)
- {
- LOG.Write(ex);
- return false;
- }
- }
- public bool ParseRegisteredPositionData(string[] pdata)
- {
- try
- {
- ReadMemorySpec = pdata[0];
- ReadTransferStation = pdata[1];
- ReadSlotNumber = Convert.ToInt16(pdata[2]);
- ReadArmPosture = pdata[3];
- ReadBladeNo = (RobotArmEnum)(Convert.ToInt16(pdata[4]) - 1);
- if (pdata[5] == "S")
- ReadPositionType = GM201LVPPositonEnum.RegisteredPosition;
- if (pdata[5] == "R")
- ReadPositionType = GM201LVPPositonEnum.ReadyPosition;
- if (pdata[5] == "M")
- ReadPositionType = GM201LVPPositonEnum.IntermediatePosition;
- if (pdata[5] == "B")
- ReadPositionType = GM201LVPPositonEnum.MappingStartPosition;
- if (pdata[5] == "E")
- ReadPositionType = GM201LVPPositonEnum.MappingFinishPosition;
- return true;
- }
- catch (Exception ex)
- {
- LOG.Write(ex);
- return false;
- }
- }
- public bool ParseStationData(string[] pdata)
- {
- try
- {
- ReadMemorySpec = pdata[0];
- ReadTransferStation = pdata[1];
- if (ReadStationItemValues.ContainsKey(pdata[2]))
- ReadStationItemValues.Remove(pdata[2]);
- ReadStationItemValues.Add(pdata[2], pdata[3]);
- if (ReadRobotParameterResult.ContainsKey(ReadTransferStation))
- {
- ReadRobotParameterResult[ReadTransferStation] = $"{pdata[2]},{pdata[3]}";
- }
- else
- {
- ReadRobotParameterResult.Add(ReadTransferStation, $"{pdata[2]},{pdata[3]}");
- }
- return true;
- }
- catch (Exception ex)
- {
- LOG.Write(ex);
- return false;
- }
- }
- public bool ParseParameterData(string[] pdata)
- {
- try
- {
- ReadParameterType = pdata[0];
- ReadParameterNo = pdata[1];
- ReadParameterValue = pdata[2];
- if (ReadRobotParameterResult.ContainsKey(ReadParameterNo))
- {
- ReadRobotParameterResult[ReadParameterNo] = ReadParameterValue;
- }
- else
- {
- ReadRobotParameterResult.Add(ReadParameterNo, ReadParameterValue);
- }
- return true;
- }
- catch (Exception ex)
- {
- LOG.Write(ex);
- return false;
- }
- }
- public bool ParseInterlockInfo(string[] pdata)
- {
- try
- {
- int intdata = Convert.ToInt16(pdata[1]);
- IsCheckInterlockWaferPresenceOnBlade1 = (intdata & 0x1) == 0;
- IsCheckInterlockWaferPresenceOnBlade2 = (intdata & 0x2) == 0;
- IsCheckInterlockWaferPresenceOnBlade3 = (intdata & 0x4) == 0;
- IsCheckInterlockWaferPresenceOnBlade4 = (intdata & 0x8) == 0;
- IsCheckInterlockWaferPresenceOnBlade5 = (intdata & 0x16) == 0;
- return true;
- }
- catch (Exception ex)
- {
- LOG.Write(ex);
- return false;
- }
- }
- public bool ParseSoftwareVersion(string[] pdata)
- {
- try
- {
- //RobotSystemVersion = pdata[0];
- RobotSoftwareVersion = pdata[1];
- return true;
- }
- catch (Exception ex)
- {
- LOG.Write(ex);
- return false;
- }
- }
- public bool ParseERR(string[] pdata)
- {
- try
- {
- var index = pdata[1];
- var code = pdata[2];
- if (code != "000")
- {
- EV.Notify($"{Name}Error{code}");
- LOG.Write($"{Name} Error {index} {code}");
- _isError = true;
- }
- else
- {
- _isError = false;
- }
- return true;
- }
- catch (Exception ex)
- {
- LOG.Write(ex);
- return false;
- }
- }
- public bool ParseSlotMap(string[] pdata)
- {
- try
- {
- ReadMappingTransferStation = pdata[1];
- ReadMappingSlotNumbers = pdata[2].Length - 1;
- StringBuilder sb = new StringBuilder();
- for (int i = 1; i < pdata[2].Length; i++)
- {
- string value = pdata[2][i].ToString();
- switch (value)
- {
- case "0":
- sb.Append("0");
- break;
- case "1":
- sb.Append("1");
- break;
- case "C":
- sb.Append("C");
- break;
- case "D":
- sb.Append("D");
- break;
- }
- }
- SlotMap = ReadSlotMap = sb.ToString();
- NotifySlotMapResult(CurrentInteractiveModule, ReadSlotMap);
- return true;
- }
- catch (Exception ex)
- {
- LOG.Write(ex);
- return false;
- }
- }
- public bool ParseMappingData(string[] pdata)
- {
- try
- {
- ReadMappingTransferStation = pdata[0];
- List<string> lstupdata = new List<string>();
- List<string> lstdowndata = new List<string>();
- for (int i = 0; i < (pdata.Length - 1) / 2; i++)
- {
- lstupdata.Add(pdata[2 * i + 1].Remove(0, 3));
- lstdowndata.Add(pdata[2 * i + 2]);
- }
- ReadMappingDownData = lstdowndata.ToArray();
- ReadMappingUpData = lstupdata.ToArray();
- return true;
- }
- catch (Exception ex)
- {
- LOG.Write(ex);
- return false;
- }
- }
- public bool ParseMappingCalibrationResult(string[] pdata)
- {
- try
- {
- ReadMappingTransferStation = pdata[0];
- ReadMappingCalibrationResult.Clear();
- ReadMappingCalibrationResult.Add("LowestLaySlotPosition", Convert.ToInt32(pdata[1]) / 1000);
- ReadMappingCalibrationResult.Add("HighestLaySlotPosition", Convert.ToInt32(pdata[2]) / 1000);
- ReadMappingCalibrationResult.Add("WaferWidth", Convert.ToInt32(pdata[3]) / 1000);
- ReadMappingCalibrationResult.Add("ThreshhholdValueofDoubleInsertion", Convert.ToInt32(pdata[4]) / 1000);
- ReadMappingCalibrationResult.Add("ThreshhholdValueofSlantingInsertion1", Convert.ToInt32(pdata[5]) / 1000);
- ReadMappingCalibrationResult.Add("ThreshhholdValueofSlantingInsertion2", Convert.ToInt32(pdata[6]) / 1000);
- return true;
- }
- catch (Exception ex)
- {
- LOG.Write(ex);
- return false;
- }
- }
- protected override bool fClear(object[] param)
- {
- if (!_connection.IsConnected)
- {
- EV.PostAlarmLog(RobotModuleName.ToString(), $"{RobotModuleName} clear failed for not connect with {_connection.Address}");
- return false;
- }
- lock (_locker)
- {
- _lstHandlers.Clear();
- _connection.ForceClear();
- //_lstHandlers.AddLast(new GM201LVPRobotMotionHandler(this, "CCLR", "E"));
- string strpara = "1,1,N";
- _lstHandlers.AddLast(new GM201LVPRobotMotionHandler(this, "INIT", strpara));
- _lstHandlers.AddLast(new GM201LVPRobotReadHandler(this, "RSTS"));
- }
- return true;
- }
- protected override bool fStartReadData(object[] param)
- {
- if (!_connection.IsConnected)
- {
- EV.PostAlarmLog(RobotModuleName.ToString(), $"{RobotModuleName} read data failed for not connect with {_connection.Address}");
- return false;
- }
- if (param.Length < 1) return false;
- string readcommand = param[0].ToString();
- switch (readcommand)
- {
- case "CurrentStatus":
- lock (_locker)
- {
- _lstHandlers.AddLast(new GM201LVPRobotReadHandler(this, "RSTS"));
- //_lstHandlers.AddLast(new GM201LVPRobotReadHandler(this, "RPOS", "F"));
- //_lstHandlers.AddLast(new GM201LVPRobotReadHandler(this, "RPOS", "R"));
- }
- break;
- case "CurrentRobotParameters":
- lock (_locker)
- {
- var parameters = param[1].ToString().Split(';').ToList();
- foreach (var item in parameters)
- {
- _lstMonitorHandler.AddLast(new GM201LVPRobotReadHandler(this, "RPRM", item));
- }
- }
- break;
- case "CurrentRobotPositionConfig":
- lock (_locker)
- {
- var parameters = param[1].ToString().Split(';').ToList();
- foreach (var item in parameters)
- {
- _lstMonitorHandler.AddLast(new GM201LVPRobotReadHandler(this, "RSTR", item));
- }
- }
- break;
- case "CurrentRobotPositionAxis":
- lock (_locker)
- {
- var parameters = param[1].ToString().Split(';').ToList();
- foreach (var item in parameters)
- {
- _lstMonitorHandler.AddLast(new GM201LVPRobotReadHandler(this, "RSTP", item));
- }
- }
- break;
- default:
- break;
- }
- return true;
- }
- protected override bool fMonitorReadData(object[] param)
- {
- IsBusy = false;
- return _lstHandlers.Count == 0 && !_connection.IsBusy;
- }
- private void ExecuteHandler(HandlerBase handler)
- {
- _connection.Execute(handler);
- }
- private string Checksum(byte[] bytes)
- {
- int sum = 0;
- foreach (byte code in bytes)
- {
- sum += code;
- }
- string hex = String.Format("{0:X2}", sum % 256);
- return hex;
- }
- private Stopwatch _timerActionMonitor = new Stopwatch();
- protected override bool fStartSetParameters(object[] param)
- {
- if (!_connection.IsConnected)
- {
- EV.PostAlarmLog(RobotModuleName.ToString(), $"{RobotModuleName} set parameter failed for not connect with {_connection.Address}");
- return false;
- }
- try
- {
- string strParameter;
- string setcommand = param[0].ToString();
- switch (setcommand)
- {
- case "SetSpeed": // SSPD Set the motion speed
- int speedLevel = Convert.ToInt32(param[1]);
- if (speedLevel > 100) speedLevel = 100;
- if (speedLevel < 1) speedLevel = 1;
- lock (_locker)
- {
- _lstHandlers.AddLast(new GM201LVPRobotSetHandler(this, "SSLV", $"1,{SpeedLevelSetting.ToString("D3")}"));
- }
- break;
- case "SetParameter": // SPRM
- lock (_locker)
- {
- var data = param[1].ToString().Split(';').ToList();
- foreach (var item in data)
- {
- if (!string.IsNullOrEmpty(item))
- {
- _lstMonitorHandler.AddLast(new GM201LVPRobotSetHandler(this, "SPRM", item));
- }
- }
- }
- break;
- case "SetPositionConfig": //SSTR,C01,000,00000000025
- lock (_locker)
- {
- var data = param[1].ToString().Split(';').ToList();
- foreach (var item in data)
- {
- if (!string.IsNullOrEmpty(item))
- {
- _lstMonitorHandler.AddLast(new GM201LVPRobotSetHandler(this, "SSTR", item));
- }
- }
- }
- break;
- case "SetPositionAxis": //SABS,C01,00000100000,00000090000,00000000000,00000450000,00000010000
- lock (_locker)
- {
- var data = param[1].ToString().Split(';').ToList();
- foreach (var item in data)
- {
- if (!string.IsNullOrEmpty(item))
- {
- _lstMonitorHandler.AddLast(new GM201LVPRobotSetHandler(this, "SABS", item));
- }
- }
- }
- break;
- case "EnableInterLock": //SMSK
- int smskValid = Convert.ToInt16(param[1].ToString());
- lock (_locker)
- {
- _lstHandlers.AddLast(new GM201LVPRobotSetHandler(this, "SPRM", smskValid.ToString("D4")));
- }
- break;
- }
- _timerActionMonitor.Restart();
- }
- catch (Exception)
- {
- string reason = "";
- if (param != null)
- {
- foreach (var para in param)
- {
- reason += para.ToString() + ",";
- }
- }
- EV.PostAlarmLog(Name, "Set command parameter invalid:" + reason);
- return false;
- }
- return true;
- }
- protected override bool fMonitorSetParamter(object[] param)
- {
- IsBusy = false;
- if (_timerActionMonitor.IsRunning && _timerActionMonitor.Elapsed > TimeSpan.FromSeconds(_timeLimitMotion))
- {
- _timerActionMonitor.Stop();
- OnError("SetParameterTimeOut");
- return true;
- }
- if (_lstHandlers.Count == 0 && !_connection.IsBusy)
- {
- //EV.PostInfoLog(Name, "SetParameter complete");
- return true;
- }
- return false;
- }
- protected override bool fStartTransferWafer(object[] param)
- {
- return false;
- }
- protected override bool fStartUnGrip(object[] param)
- {
- if (!_connection.IsConnected)
- {
- EV.PostAlarmLog(RobotModuleName.ToString(), $"{RobotModuleName} ungrip failed for not connect with {_connection.Address}");
- return false;
- }
- lock (_locker)
- {
- RobotArmEnum arm = (RobotArmEnum)param[0];
- string strpara = (arm == RobotArmEnum.Both ? "F" : ((int)arm + 1).ToString()) + ",0,0";
- _lstHandlers.AddLast(new GM201LVPRobotMotionHandler(this, "CSOL", strpara));
- }
- _timerActionMonitor.Restart();
- return true;
- }
- protected override bool fMonitorUnGrip(object[] param)
- {
- IsBusy = false;
- if (_timerActionMonitor.IsRunning && _timerActionMonitor.Elapsed > TimeSpan.FromSeconds(_timeLimitMotion))
- {
- _timerActionMonitor.Stop();
- OnError("UngripTimeOut");
- return true;
- }
- if (_lstHandlers.Count == 0 && !_connection.IsBusy)
- {
- //EV.PostInfoLog(Name, "Ungrip complete");
- return true;
- }
- return false;
- }
- protected override bool fStartGrip(object[] param)
- {
- if (!_connection.IsConnected)
- {
- EV.PostAlarmLog(RobotModuleName.ToString(), $"{RobotModuleName} grip failed for not connect with {_connection.Address}");
- return false;
- }
- lock (_locker)
- {
- RobotArmEnum arm = (RobotArmEnum)param[0];
- string strpara = (arm == RobotArmEnum.Both ? "F" : ((int)arm + 1).ToString()) + ",1,0";
- _lstHandlers.AddLast(new GM201LVPRobotMotionHandler(this, "CSOL", strpara));
- }
- return true;
- }
- protected override bool fMonitorGrip(object[] param)
- {
- IsBusy = false;
- if (_timerActionMonitor.IsRunning && _timerActionMonitor.Elapsed > TimeSpan.FromSeconds(_timeLimitMotion))
- {
- _timerActionMonitor.Stop();
- OnError("GripTimeOut");
- return true;
- }
- if (_lstHandlers.Count == 0 && !_connection.IsBusy)
- {
- //EV.PostInfoLog(Name, "Grip complete");
- return true;
- }
- return false;
- }
- protected override bool fStartInit(object[] param)
- {
- if (!_connection.IsConnected)
- {
- EV.PostAlarmLog(RobotModuleName.ToString(), $"{RobotModuleName} init failed for not connect with {_connection.Address}");
- return false;
- }
- lock (_locker)
- {
- if (_doRobotHold != null)
- {
- _doRobotHold.SetTrigger(true, out _);
- Thread.Sleep(100);
- }
- //ExecuteHandler(new GM201LVPRobotReadHandler(this, "RERR", "001"));
- if (_isError)
- {
- string strparaReset = "1,1,N";
- _lstHandlers.AddLast(new GM201LVPRobotMotionHandler(this, "INIT", strparaReset));
- _isError = false;
- }
- string strpara = "1,1,G";
- _lstHandlers.AddLast(new GM201LVPRobotMotionHandler(this, "INIT", strpara));
- if (SpeedLevelSetting >= 1 && SpeedLevelSetting <= 100)
- _lstHandlers.AddLast(new GM201LVPRobotSetHandler(this, "SSLV", $"1,{SpeedLevelSetting.ToString("D3")}"));
- _lstHandlers.AddLast(new GM201LVPRobotReadHandler(this, "RSTS"));
- }
- _timerActionMonitor.Restart();
- return true;
- }
- protected override bool fMonitorInit(object[] param)
- {
- IsBusy = false;
- if (_timerActionMonitor.IsRunning && _timerActionMonitor.Elapsed > TimeSpan.FromSeconds(_timeLimitHome))
- {
- _timerActionMonitor.Stop();
- OnError("InitTimeOut");
- return true;
- }
- if (_lstHandlers.Count == 0 && !_connection.IsBusy)
- {
- BladeTarget = ModuleName.System;
- Blade1Target = ModuleName.System;
- Blade2Target = ModuleName.System;
- CmdTarget = ModuleName.System;
- MoveInfo = new RobotMoveInfo()
- {
- Action = RobotAction.Moving,
- ArmTarget = CmdRobotArm == RobotArmEnum.Lower ? RobotArm.ArmA : RobotArm.ArmB,
- BladeTarget = BuildBladeTarget(),
- };
- //EV.PostInfoLog(Name, "Init complete");
- return true;
- }
- return false;
- }
- protected override bool fStartHome(object[] param)
- {
- if (!_connection.IsConnected)
- {
- EV.PostAlarmLog(RobotModuleName.ToString(), $"{RobotModuleName} init failed for not connect with {_connection.Address}");
- return false;
- }
- lock (_locker)
- {
- if (_doRobotHold != null)
- {
- _doRobotHold.SetTrigger(true, out _);
- Thread.Sleep(100);
- }
- //ExecuteHandler(new GM201LVPRobotReadHandler(this, "RERR", "001"));
- if (_isError)
- {
- string strparaReset = "1,1,N";
- _lstHandlers.AddLast(new GM201LVPRobotMotionHandler(this, "INIT", strparaReset));
- _isError = false;
- }
- string strpara = "1,1,G";
- _lstHandlers.AddLast(new GM201LVPRobotMotionHandler(this, "INIT", strpara, _timeLimitHome));
- if (SpeedLevelSetting >= 1 && SpeedLevelSetting <= 100)
- _lstHandlers.AddLast(new GM201LVPRobotSetHandler(this, "SSLV", $"1,{SpeedLevelSetting.ToString("D3")}"));
- _lstHandlers.AddLast(new GM201LVPRobotReadHandler(this, "RSTS"));
- }
- _timerActionMonitor.Restart();
- return true;
- }
- protected override bool fMonitorHome(object[] param)
- {
- IsBusy = false;
- if (_timerActionMonitor.IsRunning && _timerActionMonitor.Elapsed > TimeSpan.FromSeconds(_timeLimitHome))
- {
- _timerActionMonitor.Stop();
- OnError("HomeTimeOut");
- return true;
- }
- if (_lstHandlers.Count == 0 && !_connection.IsBusy)
- {
- BladeTarget = ModuleName.System;
- Blade1Target = ModuleName.System;
- Blade2Target = ModuleName.System;
- CmdTarget = ModuleName.System;
- MoveInfo = new RobotMoveInfo()
- {
- Action = RobotAction.Moving,
- ArmTarget = CmdRobotArm == RobotArmEnum.Lower ? RobotArm.ArmA : RobotArm.ArmB,
- BladeTarget = BuildBladeTarget(),
- };
- //EV.PostInfoLog(Name, "Home complete");
- return true;
- }
- return false;
- }
- protected override bool fStartGoTo(object[] param)
- {
- if (!_connection.IsConnected)
- {
- EV.PostAlarmLog(RobotModuleName.ToString(), $"{RobotModuleName} move failed for not connect with {_connection.Address}");
- return false;
- }
- try
- {
- RobotArmEnum arm = (RobotArmEnum)param[0];
- ModuleName module = (ModuleName)Enum.Parse(typeof(ModuleName), param[1].ToString());
- BladeTarget = module;
- Blade1Target = module;
- Blade2Target = module;
- int slot = (int)param[2] + 1;
- //RobotPostionEnum postype = (RobotPostionEnum)param[3];
- RobotPostionEnum postype = (RobotPostionEnum)Enum.Parse(typeof(RobotPostionEnum), param[3].ToString());
- string strpara = string.Empty;
- //bool isFromOriginal = (bool)param[8];
- //bool isJumpToNextMotion = (bool)param[9];
- //if ((int)postype >= 0 && (int)postype < 10)
- //{
- // strpara = "G";
- //}
- //if ((int)postype >= 10 && (int)postype < 20)
- //{
- // strpara = "P";
- //}
- //if ((int)postype >= 20 && (int)postype < 30)
- //{
- // strpara = "E";
- //}
- string trsSt = GetStationsName(module);
- if (string.IsNullOrEmpty(trsSt))
- {
- LOG.Write("invalid transfer paramter");
- return false;
- }
- string TrsPnt = string.Empty;
- if (postype == RobotPostionEnum.PickReady)
- {
- TrsPnt = "G";
- }
- if (postype == RobotPostionEnum.PlaceReady)
- {
- TrsPnt = "P";
- }
- //strCmd = "MTCH";
- if (_MaterialType == MaterialType.Wafer)
- {
- int bladeNo = (arm == RobotArmEnum.Blade1 || arm == RobotArmEnum.Lower) ? 4 : 31;
- strpara += $"{TrsPnt},{trsSt},{slot:D3},{bladeNo:D3}";
- }
- else if (_MaterialType == MaterialType.Carrier)
- {
- //strpara = $"{TrsPnt},{trsSt},001,000";
- string strHand = GetHandsName(module);
- if (string.IsNullOrEmpty(strHand))
- {
- LOG.Write("Invalid Paramter.");
- return false;
- }
- strpara = $"{TrsPnt},{trsSt},001,{strHand},001";
- }
- lock (_locker)
- {
- {
- _lstHandlers.AddLast(new GM201LVPRobotMotionHandler(this, "MTCH", strpara));
- _lstHandlers.AddLast(new GM201LVPRobotReadHandler(this, "RSTS"));
- }
- }
- _timerActionMonitor.Restart();
- return true;
- }
- catch (Exception ex)
- {
- LOG.Write(ex);
- return false;
- }
- }
- protected override bool fMonitorGoTo(object[] param)
- {
- if (_timerActionMonitor.IsRunning && _timerActionMonitor.Elapsed > TimeSpan.FromSeconds(_timeLimitMotion))
- {
- _timerActionMonitor.Stop();
- OnError("GotoTimeOut");
- return true;
- }
- if (_lstHandlers.Count != 0 || _connection.IsBusy) return false;
- IsBusy = false;
- return true;
- }
- protected override bool fGoToComplete(object[] param)
- {
- try
- {
- if (_lstHandlers.Count > 0) return false;
- RobotArmEnum arm = (RobotArmEnum)CurrentParamter[0];
- ModuleName sourcemodule = (ModuleName)Enum.Parse(typeof(ModuleName), CurrentParamter[1].ToString());
- int SourceslotIndex = (int)CurrentParamter[2];
- RobotPostionEnum postype = (RobotPostionEnum)CurrentParamter[3];
- //bool isFromOriginal = (bool)CurrentParamter[8];
- //bool isJumpToNextMotion = (bool)CurrentParamter[9];
- }
- catch (Exception ex)
- {
- LOG.Write(ex);
- }
- return base.fGoToComplete(param);
- }
- protected override bool fStop(object[] param)
- {
- lock (_locker)
- {
- if (_doRobotHold != null)
- _doRobotHold.SetTrigger(false, out _);
- _lstHandlers.Clear();
- _connection.ForceClear();
- //ExecuteHandler(new GM201LVPRobotMotionHandler(this, "CSTP", "E"));
- }
- return true; ;
- }
- protected override bool fMonitorStop(object[] param)
- {
- return true;
- }
- protected override bool fStartMove(object[] param)
- {
- if (!_connection.IsConnected)
- {
- EV.PostAlarmLog(RobotModuleName.ToString(), $"{RobotModuleName} move failed for not connect with {_connection.Address}");
- return false;
- }
- try
- {
- string strCmd = param[0].ToString();
- string strpara = string.Empty;
- for (int i = 1; i < param.Length; i++)
- {
- if (i == 1)
- strpara += param[i].ToString();
- else
- strpara += "," + param[i].ToString();
- }
- lock (_locker)
- {
- _lstHandlers.AddLast(new GM201LVPRobotMotionHandler(this, strCmd, strpara));
- _lstHandlers.AddLast(new GM201LVPRobotReadHandler(this, "RPOS", "F"));
- }
- _timerActionMonitor.Restart();
- return true;
- }
- catch (Exception ex)
- {
- LOG.Write(ex);
- return false;
- }
- }
- private string GetStationsName(ModuleName chamber)
- {
- if (!_moduleAssociateStationDic.ContainsKey(chamber.ToString()))
- {
- LOG.Error($"not define teach position {chamber}");
- return "";
- }
- var moduleIndex = _moduleAssociateStationDic[chamber.ToString()];
- return moduleIndex.ToString();
- }
- private string GetHandsName(ModuleName chamber)
- {
- if (!_moduleAssociateHandDic.ContainsKey(chamber.ToString()))
- {
- LOG.Error($"not define teach position {chamber}");
- return "";
- }
- var moduleIndex = _moduleAssociateHandDic[chamber.ToString()];
- return moduleIndex.ToString();
- }
- private int GetSlotsNumber(ModuleName module)
- {
- try
- {
- if (ModuleHelper.IsLoadPort(module))
- {
- return DEVICE.GetDevice<LoadPortBaseDevice>(module.ToString()).ValidSlotsNumber;
- }
- return SC.GetValue<int>($"CarrierInfo.{module}SlotsNumber");
- }
- catch (Exception ex)
- {
- LOG.Write(ex);
- return -1;
- }
- }
- private bool _isNeedMappignData
- {
- get
- {
- if (SC.ContainsItem($"Robot.{RobotModuleName}.NeedReadMapData"))
- return SC.GetValue<bool>($"Robot.{RobotModuleName}.NeedReadMapData");
- return true;
- }
- }
- protected override bool fStartMapWafer(object[] param)
- {
- if (!_connection.IsConnected)
- {
- EV.PostAlarmLog(RobotModuleName.ToString(), $"{RobotModuleName} map failed for not connect with {_connection.Address}");
- return false;
- }
- try
- {
- ReadSlotMap = "";
- //RobotArmEnum pickarm = (RobotArmEnum)param[0];
- ModuleName module = (ModuleName)Enum.Parse(typeof(ModuleName), param[0].ToString());
- BladeTarget = module;
- Blade1Target = module;
- Blade2Target = module;
- //int slotsNumber = GetSlotsNumber(module);
- //if (slotsNumber == -1)
- //{
- // LOG.Write("Invalid mapping paramter slots number");
- // return false;
- //}
- string TrsSt = GetStationsName(module);
- if (string.IsNullOrEmpty(TrsSt))
- {
- LOG.Write("Invalid Paramter.");
- return false;
- }
- string strpara = $"{TrsSt},1";
- lock (_locker)
- {
- CurrentInteractiveModule = module;
- _lstHandlers.AddLast(new GM201LVPRobotMotionHandler(this, "MMAP", strpara, _timeLimitMotion));
- //if (_isNeedMappignData)
- // _lstHandlers.AddLast(new GM201LVPRobotReadHandler(this, "RMPD", $"{GetStationsName(module)},025"));
- _lstHandlers.AddLast(new GM201LVPRobotReadHandler(this, "RMAP", $"{GetStationsName(module)}"));
- }
- _timerActionMonitor.Restart();
- return true;
- }
- catch (Exception ex)
- {
- LOG.Write(ex);
- return false;
- }
- }
- protected override bool fMonitorMap(object[] param)
- {
- if (_timerActionMonitor.IsRunning && _timerActionMonitor.Elapsed > TimeSpan.FromSeconds(_timeLimitMotion))
- {
- _timerActionMonitor.Stop();
- OnError("PlaceTimeOut");
- return true;
- }
- if (_lstHandlers.Count != 0 || _connection.IsBusy) return false;
- IsBusy = false;
- BladeTarget = ModuleName.System;
- Blade1Target = ModuleName.System;
- Blade2Target = ModuleName.System;
- CmdTarget = ModuleName.System;
- MoveInfo = new RobotMoveInfo()
- {
- Action = RobotAction.Moving,
- ArmTarget = CmdRobotArm == RobotArmEnum.Lower ? RobotArm.ArmA : RobotArm.ArmB,
- BladeTarget = BuildBladeTarget(),
- };
- return true;
- }
- protected override bool fStartSwapWafer(object[] param)
- {
- if (!_connection.IsConnected)
- {
- EV.PostAlarmLog(RobotModuleName.ToString(), $"{RobotModuleName} move failed for not connect with {_connection.Address}");
- return false;
- }
- try
- {
- RobotArmEnum arm = (RobotArmEnum)param[0];
- ModuleName module = (ModuleName)Enum.Parse(typeof(ModuleName), param[1].ToString());
- BladeTarget = module;
- Blade1Target = module;
- Blade2Target = module;
- if (ModuleHelper.IsLoadPort(module))
- {
- var lp = DEVICE.GetDevice<LoadPortBaseDevice>(module.ToString());
- if (lp != null)
- lp.NoteTransferStart();
- }
- int slot = (int)param[2] + 1;
- float x = 0, y = 0, z = 0, w = 0;
- if (param.Length > 3)
- {
- x = (float)param[3];
- y = (float)param[4];
- z = (float)param[5];
- w = (float)param[6];
- }
- int intXvalue = (int)(x * 1000);
- int intYvalue = (int)(y * 1000);
- int intZvalue = (int)(z * 1000);
- int intWvalue = (int)(w * 1000);
- string TrsSt = GetStationsName(module);
- if (string.IsNullOrEmpty(TrsSt))
- {
- LOG.Write("Invalid Paramter.");
- return false;
- }
- string strpara = $"E,{TrsSt},{slot:D2},A,{(arm == RobotArmEnum.Both ? "F" : ((int)arm + 1).ToString())},P4";
- if (x != 0 || y != 0 || z != 0)
- {
- strpara += $",{intXvalue:D8},{intYvalue:D8},{intZvalue:D8}";
- }
- if (w != 0)
- {
- strpara += $",{intWvalue:D8}";
- }
- lock (_locker)
- {
- if (_lstHandlers.Count == 0 && !_connection.IsBusy)
- {
- ExecuteHandler(new GM201LVPRobotMotionHandler(this, "MTRS", strpara, _timeLimitMotion));
- }
- else
- {
- _lstHandlers.AddLast(new GM201LVPRobotMotionHandler(this, "MTRS", strpara));
- }
- }
- return true;
- }
- catch (Exception ex)
- {
- LOG.Write(ex);
- return false;
- }
- }
- protected override bool fSwapComplete(object[] param)
- {
- RobotArmEnum arm = (RobotArmEnum)CurrentParamter[0];
- ModuleName sourcemodule;
- if (!Enum.TryParse(CurrentParamter[1].ToString(), out sourcemodule)) return false;
- int Sourceslotindex;
- if (!int.TryParse(CurrentParamter[2].ToString(), out Sourceslotindex)) return false;
- int delayCount = 0;
- if (arm == RobotArmEnum.Lower)
- {
- //WaferManager.Instance.WaferMoved(sourcemodule, Sourceslotindex, RobotModuleName, 0);
- //WaferManager.Instance.WaferMoved(RobotModuleName, 1, sourcemodule, Sourceslotindex);
- while (!isSimulatorMode && !(GetWaferState(RobotArmEnum.Lower) == RobotArmWaferStateEnum.Present
- && GetWaferState(RobotArmEnum.Upper) == RobotArmWaferStateEnum.Absent))
- {
- delayCount++;
- Thread.Sleep(50);
- LOG.Write($"{RobotModuleName} delay {delayCount} time to detect wafer");
- if (delayCount > 100)
- {
- OnError("Wafer detect error");
- return true;
- }
- }
- WaferManager.Instance.WaferMoved(sourcemodule, Sourceslotindex, RobotModuleName, 0);
- WaferManager.Instance.WaferMoved(RobotModuleName, 1, sourcemodule, Sourceslotindex);
- }
- if (arm == RobotArmEnum.Upper)
- {
- //WaferManager.Instance.WaferMoved(sourcemodule, Sourceslotindex, RobotModuleName, 1);
- //WaferManager.Instance.WaferMoved(RobotModuleName, 0, sourcemodule, Sourceslotindex);
- delayCount = 0;
- while (!isSimulatorMode && !(GetWaferState(RobotArmEnum.Upper) == RobotArmWaferStateEnum.Present &&
- GetWaferState(RobotArmEnum.Lower) == RobotArmWaferStateEnum.Absent))
- {
- delayCount++;
- Thread.Sleep(50);
- LOG.Write($"{RobotModuleName} delay {delayCount} time to detect wafer");
- if (delayCount > 100)
- {
- OnError("Wafer detect error");
- return true;
- }
- }
- WaferManager.Instance.WaferMoved(sourcemodule, Sourceslotindex, RobotModuleName, 1);
- WaferManager.Instance.WaferMoved(RobotModuleName, 0, sourcemodule, Sourceslotindex);
- }
- return base.fSwapComplete(param);
- }
- protected override bool fStartPlaceWafer(object[] param)
- {
- if (!_connection.IsConnected)
- {
- EV.PostAlarmLog(RobotModuleName.ToString(), $"{RobotModuleName} place failed for not connect with {_connection.Address}");
- return false;
- }
- try
- {
- RobotArmEnum arm = (RobotArmEnum)param[0];
- ModuleName module = (ModuleName)Enum.Parse(typeof(ModuleName), param[1].ToString());
- if (ModuleHelper.IsLoadPort(module))
- {
- var lp = DEVICE.GetDevice<LoadPortBaseDevice>(module.ToString());
- if (lp != null)
- lp.NoteTransferStart();
- }
- BladeTarget = module;
- Blade1Target = module;
- Blade2Target = module;
- int slot = (int)param[2] + 1;
- string TrsSt = GetStationsName(module);
- if (string.IsNullOrEmpty(TrsSt))
- {
- LOG.Write("Invalid Parameter.");
- return false;
- }
- string strpara = "";
- if (_MaterialType == MaterialType.Wafer)
- {
- int bladeNo = (arm == RobotArmEnum.Blade1 || arm == RobotArmEnum.Lower) ? 4 : 31;
- strpara = $"P,{TrsSt},{slot:D3},{bladeNo:D3}";
- }
- else if (_MaterialType == MaterialType.Carrier)
- {
- string strHand = GetHandsName(module);
- if (string.IsNullOrEmpty(strHand))
- {
- LOG.Write("Invalid Paramter.");
- return false;
- }
- strpara = $"P,{TrsSt},001,{strHand}";
- }
- lock (_locker)
- {
- {
- _lstHandlers.AddLast(new GM201LVPRobotMotionHandler(this, "MTRS", strpara, _timeLimitPlace));
- _lstHandlers.AddLast(new GM201LVPRobotReadHandler(this, "RSTS"));
- }
- }
- CmdTarget = module;
- MoveInfo = new RobotMoveInfo()
- {
- Action = RobotAction.Moving,
- ArmTarget = CmdRobotArm == RobotArmEnum.Lower ? RobotArm.ArmA : RobotArm.ArmB,
- BladeTarget = BuildBladeTarget(),
- };
- _timerActionMonitor.Restart();
- return true;
- }
- catch (Exception ex)
- {
- LOG.Write(ex);
- return false;
- }
- }
- protected override bool fMonitorPlace(object[] param)
- {
- IsBusy = false;
- if (_timerActionMonitor.IsRunning && _timerActionMonitor.Elapsed > TimeSpan.FromSeconds(_timeLimitPlace))
- {
- _timerActionMonitor.Stop();
- OnError("PlaceTimeOut");
- return true;
- }
- if (_lstHandlers.Count == 0 && !_connection.IsBusy)
- {
- _timerActionMonitor.Stop();
- //EV.PostInfoLog(Name, "Place complete");
- fPlaceComplete(param);
- BladeTarget = ModuleName.System;
- Blade1Target = ModuleName.System;
- Blade2Target = ModuleName.System;
- CmdTarget = ModuleName.System;
- MoveInfo = new RobotMoveInfo()
- {
- Action = RobotAction.Moving,
- ArmTarget = CmdRobotArm == RobotArmEnum.Lower ? RobotArm.ArmA : RobotArm.ArmB,
- BladeTarget = BuildBladeTarget(),
- };
- return true;
- }
- return false;
- }
- protected override bool fPlaceComplete(object[] param)
- {
- if (_isError)
- {
- OnError("RobotError");
- return true;
- }
- if (_lstHandlers.Count > 0) return false;
- RobotArmEnum arm = (RobotArmEnum)CurrentParamter[0];
- ModuleName sourcemodule;
- if (!Enum.TryParse(CurrentParamter[1].ToString(), out sourcemodule)) return false;
- int Sourceslotindex;
- if (!int.TryParse(CurrentParamter[2].ToString(), out Sourceslotindex)) return false;
- int delayCount = 0;
- if (arm == RobotArmEnum.Lower || arm == RobotArmEnum.Blade1)
- {
- //WaferManager.Instance.WaferMoved(RobotModuleName, 0, sourcemodule, Sourceslotindex);
- while (!isSimulatorMode && GetWaferState(arm) != RobotArmWaferStateEnum.Absent)
- {
- delayCount++;
- Thread.Sleep(50);
- LOG.Write($"{RobotModuleName} delay {delayCount} time to detect wafer");
- if (delayCount > 100)
- {
- OnError("Wafer detect error");
- return true;
- }
- }
- if (_MaterialType == MaterialType.Wafer)
- {
- WaferManager.Instance.WaferMoved(RobotModuleName, 2, sourcemodule, Sourceslotindex);
- }
- else if (_MaterialType == MaterialType.Carrier)
- {
- if (CarrierManager.Instance.CheckHasCarrier(RobotModuleName.ToString(), 0))
- {
- CarrierManager.Instance.CarrierMoved(RobotModuleName.ToString(), sourcemodule.ToString(), true);
- for (int i = 0; i < WaferManager.Instance.GetWafers(RobotModuleName).Length; i++)
- {
- if (WaferManager.Instance.CheckHasWafer(RobotModuleName, i))
- WaferManager.Instance.WaferMoved(RobotModuleName, i, sourcemodule, i, false);
- }
- }
- }
- }
- if (arm == RobotArmEnum.Upper || arm == RobotArmEnum.Blade2)
- {
- //WaferManager.Instance.WaferMoved(RobotModuleName, 1, sourcemodule, Sourceslotindex);
- delayCount = 0;
- while (!isSimulatorMode && GetWaferState(arm) != RobotArmWaferStateEnum.Absent)
- {
- delayCount++;
- Thread.Sleep(50);
- LOG.Write($"{RobotModuleName} delay {delayCount} time to detect wafer");
- if (delayCount > 100)
- {
- OnError("Wafer detect error");
- return true;
- }
- }
- WaferManager.Instance.WaferMoved(RobotModuleName, 1, sourcemodule, Sourceslotindex);
- }
- if (arm == RobotArmEnum.Both)
- {
- //WaferManager.Instance.WaferMoved(RobotModuleName, 0, sourcemodule, Sourceslotindex);
- //WaferManager.Instance.WaferMoved(RobotModuleName, 1, sourcemodule, Sourceslotindex);
- while (!isSimulatorMode && GetWaferState(arm) != RobotArmWaferStateEnum.Absent)
- {
- delayCount++;
- Thread.Sleep(50);
- LOG.Write($"{RobotModuleName} delay {delayCount} time to detect wafer");
- if (delayCount > 100)
- {
- OnError("Wafer detect error");
- return true;
- }
- }
- WaferManager.Instance.WaferMoved(RobotModuleName, 0, sourcemodule, Sourceslotindex);
- WaferManager.Instance.WaferMoved(RobotModuleName, 1, sourcemodule, Sourceslotindex + 1);
- WaferManager.Instance.WaferMoved(RobotModuleName, 2, sourcemodule, Sourceslotindex + 2);
- WaferManager.Instance.WaferMoved(RobotModuleName, 3, sourcemodule, Sourceslotindex + 3);
- WaferManager.Instance.WaferMoved(RobotModuleName, 4, sourcemodule, Sourceslotindex + 4);
- }
- return base.fPlaceComplete(param);
- }
- protected override bool fStartPickWafer(object[] param)
- {
- if (!_connection.IsConnected)
- {
- EV.PostAlarmLog(RobotModuleName.ToString(), $"{RobotModuleName} move failed for not connect with {_connection.Address}");
- return false;
- }
- try
- {
- RobotArmEnum arm = (RobotArmEnum)param[0];
- ModuleName module = (ModuleName)Enum.Parse(typeof(ModuleName), param[1].ToString());
- if (ModuleHelper.IsLoadPort(module))
- {
- var lp = DEVICE.GetDevice<LoadPortBaseDevice>(module.ToString());
- if (lp != null)
- lp.NoteTransferStart();
- }
- BladeTarget = module;
- Blade1Target = module;
- Blade2Target = module;
- int slot = (int)param[2] + 1;
- string TrsSt = GetStationsName(module);
- if (string.IsNullOrEmpty(TrsSt))
- {
- LOG.Write("Invalid Paramter.");
- return false;
- }
- string strpara = "";
- if (_MaterialType == MaterialType.Wafer)
- {
- int bladeNo = (arm == RobotArmEnum.Blade1 || arm == RobotArmEnum.Lower) ? 4 : 31;
- strpara = $"G,{TrsSt},{slot:D3},{bladeNo:D3}";
- }
- else if (_MaterialType == MaterialType.Carrier)
- {
- string strHand = GetHandsName(module);
- if (string.IsNullOrEmpty(strHand))
- {
- LOG.Write("Invalid Paramter.");
- return false;
- }
- strpara = $"G,{TrsSt},001,{strHand}";
- }
- lock (_locker)
- {
- _lstHandlers.AddLast(new GM201LVPRobotMotionHandler(this, "MTRS", strpara, _timeLimitPick));
- _lstHandlers.AddLast(new GM201LVPRobotReadHandler(this, "RSTS"));
- }
- CmdTarget = module;
- MoveInfo = new RobotMoveInfo()
- {
- Action = RobotAction.Moving,
- ArmTarget = CmdRobotArm == RobotArmEnum.Lower ? RobotArm.ArmA : RobotArm.ArmB,
- BladeTarget = BuildBladeTarget(),
- };
- _timerActionMonitor.Restart();
- return true;
- }
- catch (Exception ex)
- {
- LOG.Write(ex);
- return false;
- }
- }
- protected override bool fMonitorPick(object[] param)
- {
- IsBusy = false;
- if (_timerActionMonitor.IsRunning && _timerActionMonitor.Elapsed > TimeSpan.FromSeconds(_timeLimitPick))
- {
- _timerActionMonitor.Stop();
- OnError("PickTimeOut");
- return true;
- }
- if (_lstHandlers.Count == 0 && !_connection.IsBusy)
- {
- _timerActionMonitor.Stop();
- //EV.PostInfoLog(Name, "Pick complete");
- fPickComplete(param);
- BladeTarget = ModuleName.System;
- Blade1Target = ModuleName.System;
- Blade2Target = ModuleName.System;
- CmdTarget = ModuleName.System;
- MoveInfo = new RobotMoveInfo()
- {
- Action = RobotAction.Moving,
- ArmTarget = CmdRobotArm == RobotArmEnum.Lower ? RobotArm.ArmA : RobotArm.ArmB,
- BladeTarget = BuildBladeTarget(),
- };
- return true;
- }
- return false;
- }
- protected override bool fPickComplete(object[] param)
- {
- if (_isError)
- {
- OnError("RobotError");
- return true;
- }
- RobotArmEnum arm = (RobotArmEnum)CurrentParamter[0];
- ModuleName module = (ModuleName)Enum.Parse(typeof(ModuleName), CurrentParamter[1].ToString());
- ModuleName sourcemodule;
- if (!Enum.TryParse(CurrentParamter[1].ToString(), out sourcemodule)) return false;
- int SourceslotIndex;
- if (!int.TryParse(CurrentParamter[2].ToString(), out SourceslotIndex)) return false;
- int delayCount = 0;
- if (arm == RobotArmEnum.Lower || arm == RobotArmEnum.Blade1)
- {
- //WaferManager.Instance.WaferMoved(sourcemodule, SourceslotIndex, RobotModuleName, 0);
- while (!isSimulatorMode && GetWaferState(arm) != RobotArmWaferStateEnum.Present)
- {
- delayCount++;
- LOG.Write($"{RobotModuleName} delay {delayCount} time to detect wafer");
- Thread.Sleep(50);
- if (delayCount > 100)
- {
- OnError("Wafer detect error");
- return true;
- }
- }
- if (_MaterialType == MaterialType.Wafer)
- {
- WaferManager.Instance.WaferMoved(sourcemodule, SourceslotIndex, RobotModuleName, 2);
- }
- else if (_MaterialType == MaterialType.Carrier)
- {
- if (CarrierManager.Instance.CheckHasCarrier(sourcemodule.ToString(), 0))
- {
- CarrierManager.Instance.CarrierMoved(sourcemodule.ToString(), RobotModuleName.ToString(), true);
- for (int i = 0; i < WaferManager.Instance.GetWafers(sourcemodule).Length; i++)
- {
- if (WaferManager.Instance.CheckHasWafer(sourcemodule, i))
- WaferManager.Instance.WaferMoved(sourcemodule, i, RobotModuleName, i, false);
- }
- }
- }
- }
- if (arm == RobotArmEnum.Upper || arm == RobotArmEnum.Blade2)
- {
- //WaferManager.Instance.WaferMoved(sourcemodule, SourceslotIndex, RobotModuleName, 1);
- while (!isSimulatorMode && GetWaferState(arm) != RobotArmWaferStateEnum.Present)
- {
- delayCount++;
- LOG.Write($"{RobotModuleName} delay {delayCount} time to detect wafer");
- Thread.Sleep(50);
- if (delayCount > 100)
- {
- OnError("Wafer detect error");
- return true;
- }
- }
- WaferManager.Instance.WaferMoved(sourcemodule, SourceslotIndex, RobotModuleName, 1);
- }
- if (arm == RobotArmEnum.Both)
- {
- //WaferManager.Instance.WaferMoved(sourcemodule, SourceslotIndex, RobotModuleName, 0);
- //WaferManager.Instance.WaferMoved(sourcemodule, SourceslotIndex, RobotModuleName, 1);
- while (!isSimulatorMode && GetWaferState(arm) != RobotArmWaferStateEnum.Present)
- {
- delayCount++;
- LOG.Write($"{RobotModuleName} delay {delayCount} time to detect wafer");
- Thread.Sleep(50);
- if (delayCount > 100)
- {
- OnError("Wafer detect error");
- return true;
- }
- }
- WaferManager.Instance.WaferMoved(sourcemodule, SourceslotIndex, RobotModuleName, 0);
- WaferManager.Instance.WaferMoved(sourcemodule, SourceslotIndex + 1, RobotModuleName, 1);
- WaferManager.Instance.WaferMoved(sourcemodule, SourceslotIndex + 2, RobotModuleName, 2);
- WaferManager.Instance.WaferMoved(sourcemodule, SourceslotIndex + 3, RobotModuleName, 3);
- WaferManager.Instance.WaferMoved(sourcemodule, SourceslotIndex + 4, RobotModuleName, 4);
- }
- return base.fPickComplete(param);
- }
- protected override bool fResetToReady(object[] param)
- {
- if (_doRobotHold != null)
- _doRobotHold.SetTrigger(true, out _);
- return true;
- }
- protected override bool fReset(object[] param)
- {
- _isError = false;
- if (!_connection.IsConnected)
- {
- _address = SC.GetStringValue($"{Name}.Address");
- _enableLog = SC.GetValue<bool>($"{Name}.EnableLogMessage");
- _connection = new GM201LVPRobotConnection(this, _address);
- _connection.EnableLog(_enableLog);
- _connection.Connect();
- }
- if (!_isError)
- {
- lock (_locker)
- {
- string strpara = "1,1,N";
- _lstHandlers.AddLast(new GM201LVPRobotMotionHandler(this, "INIT", strpara));
- }
- return true;
- }
- lock (_locker)
- {
- if (_doRobotHold != null)
- _doRobotHold.SetTrigger(true, out _);
- _lstHandlers.Clear();
- _connection.ForceClear();
- //_lstHandlers.AddLast(new GM201LVPRobotMotionHandler(this, "CCLR", "E", _timeLimitMotion));
- string strpara = "1,1,N";
- _lstHandlers.AddLast(new GM201LVPRobotMotionHandler(this, "INIT", strpara));
- //string strpara = "1,0,N";
- //_lstHandlers.AddLast(new GM201LVPRobotMotionHandler(this, "INIT", strpara, _timeLimitMotion));
- //_lstHandlers.AddLast(new GM201LVPRobotReadHandler(this, "RSTS"));
- _timerActionMonitor.Restart();
- }
- return true;
- }
- protected override bool fMonitorReset(object[] param)
- {
- IsBusy = false;
- if (_timerActionMonitor.IsRunning && _timerActionMonitor.Elapsed > TimeSpan.FromSeconds(_timeLimitMotion))
- {
- _timerActionMonitor.Stop();
- OnError("ResetTimeOut");
- return true;
- }
- if (_lstHandlers.Count == 0 && !_connection.IsBusy)
- {
- return true;
- }
- return false;
- }
- protected override bool fError(object[] param)
- {
- return true;
- }
- protected override bool fStartExtendForPick(object[] param)
- {
- return false;
- }
- protected override bool fStartExtendForPlace(object[] param)
- {
- return false;
- }
- protected override bool fStartRetractFromPick(object[] param)
- {
- return false;
- }
- protected override bool fStartRetractFromPlace(object[] param)
- {
- return false;
- }
- public void CheckWaferPresentAndGrip()
- {
- if (GetWaferState(RobotArmEnum.Lower) == RobotArmWaferStateEnum.Present)
- {
- if (WaferManager.Instance.CheckNoWafer(RobotModuleName, 0))
- {
- EV.PostWarningLog($"{RobotModuleName}", $"System detec wafer on lower arm, will create wafer automatically.");
- WaferManager.Instance.CreateWafer(RobotModuleName, 0, WaferStatus.Normal);
- }
- }
- if (GetWaferState(RobotArmEnum.Lower) == RobotArmWaferStateEnum.Absent)
- {
- _lstHandlers.AddLast(new GM201LVPRobotMotionHandler(this, "CSOL", "1,0,0"));
- if (WaferManager.Instance.CheckHasWafer(RobotModuleName, 0))
- {
- EV.PostWarningLog($"{RobotModuleName}", $"System didn't detect wafer on lower arm, but it has record.");
- }
- }
- if (GetWaferState(RobotArmEnum.Upper) == RobotArmWaferStateEnum.Present)
- {
- if (WaferManager.Instance.CheckNoWafer(RobotModuleName, 1))
- {
- EV.PostWarningLog($"{RobotModuleName}", $"System detect wafer on upper arm, will create wafer automatically.");
- WaferManager.Instance.CreateWafer(RobotModuleName, 1, WaferStatus.Normal);
- }
- }
- if (GetWaferState(RobotArmEnum.Upper) == RobotArmWaferStateEnum.Absent)
- {
- _lstHandlers.AddLast(new GM201LVPRobotMotionHandler(this, "CSOL", "2,0,0"));
- if (WaferManager.Instance.CheckHasWafer(RobotModuleName, 1))
- {
- EV.PostWarningLog($"{RobotModuleName}", $"System didn't detect wafer on upper arm, but it has record.");
- }
- }
- }
- public override RobotArmWaferStateEnum GetWaferState(RobotArmEnum arm)
- {
- if (arm == RobotArmEnum.Lower || arm == RobotArmEnum.Blade1)
- {
- if (_diRobotBlade1WaferOn != null)
- {
- if (_diRobotBlade1WaferOn.Value) return RobotArmWaferStateEnum.Absent;
- else return RobotArmWaferStateEnum.Present;
- }
- var waferPresenceOnBlade1 = _MaterialType == MaterialType.Wafer ? IsWaferPresenceOnBlade3 : IsWaferPresenceOnBlade1;
- return waferPresenceOnBlade1 ? RobotArmWaferStateEnum.Present : RobotArmWaferStateEnum.Absent;
- }
- if (arm == RobotArmEnum.Upper || arm == RobotArmEnum.Blade2)
- {
- if (_diRobotBlade2WaferOn != null)
- {
- if (_diRobotBlade2WaferOn.Value) return RobotArmWaferStateEnum.Absent;
- else return RobotArmWaferStateEnum.Present;
- }
- return IsWaferPresenceOnBlade2 ? RobotArmWaferStateEnum.Present : RobotArmWaferStateEnum.Absent;
- }
- if (arm == RobotArmEnum.Both)
- {
- if (_diRobotBlade1WaferOn != null && _diRobotBlade2WaferOn != null)
- {
- if (_diRobotBlade2WaferOn.Value && _diRobotBlade1WaferOn.Value)
- return RobotArmWaferStateEnum.Absent;
- else if (!_diRobotBlade2WaferOn.Value && !_diRobotBlade1WaferOn.Value)
- return RobotArmWaferStateEnum.Present;
- else return RobotArmWaferStateEnum.Unknown;
- }
- if (IsWaferPresenceOnBlade1 && IsWaferPresenceOnBlade2 && IsWaferPresenceOnBlade3 && IsWaferPresenceOnBlade4 && IsWaferPresenceOnBlade5)
- {
- return RobotArmWaferStateEnum.Present;
- }
- if ((!IsWaferPresenceOnBlade1) && !IsWaferPresenceOnBlade2 && !IsWaferPresenceOnBlade3 && !IsWaferPresenceOnBlade4 && !IsWaferPresenceOnBlade5)
- {
- return RobotArmWaferStateEnum.Absent;
- }
- }
- return RobotArmWaferStateEnum.Unknown;
- }
- public override void NoteError(string errortext)
- {
- _isError = true;
- if (!string.IsNullOrEmpty(errortext))
- OnError(errortext);
- //lock (_locker)
- {
- _lstHandlers.Clear();
- _connection.ForceClear();
- if (_tpStatus != null && !_tpStatus.Value)
- {
- //False是TP状态
- //TP状态,不需要发
- }
- else
- {
- _lstHandlers.AddLast(new GM201LVPRobotReadHandler(this, "RERR", "001"));
- }
- }
- }
- //public void SenACK()
- //{
- // _connection.SendAck();
- //}
- public override bool OnActionDone(object[] param)
- {
- return true;
- }
- public override void Terminate()
- {
- _thread.Stop();
- if (!SC.ContainsItem($"{Name}.CloseConnectionOnShutDown") || SC.GetValue<bool>($"{Name}.CloseConnectionOnShutDown"))
- {
- LOG.Write("Close connection for" + RobotModuleName.ToString());
- _connection.Disconnect();
- }
- base.Terminate();
- }
- private string BuildBladeTarget()
- {
- return (CmdRobotArm == RobotArmEnum.Upper ? "ArmB" : "ArmA") + "." + CmdTarget;
- }
- public override void SetPauseResume(bool isPause)
- {
- _connection.SendMessage($"{(isPause ? "CSTP,H" : "CRSM")}\r");
- if (_connection.ActiveHandler != null)
- {
- if (isPause)
- {
- _connection.ActiveHandler.TimerAck?.Stop();
- _connection.ActiveHandler.TimerComplete?.Stop();
- }
- else
- {
- _connection.ActiveHandler.TimerAck?.Start();
- _connection.ActiveHandler.TimerComplete?.Start();
- }
- }
- }
- public void NotePause(bool isPause)
- {
- IsPause = isPause;
- }
- }
- public class GM201LVPTokenGenerator
- {
- private int _last = 0;
- List<int> _pool = new List<int>();
- SCConfigItem scToken = null;
- public int CurrentToken => _last;
- public GM201LVPTokenGenerator(string scName)
- {
- scToken = SC.GetConfigItem(scName);
- if (scToken == null)
- _last = scToken.IntValue;
- Random r = new Random();
- _last = r.Next() % 20;
- }
- public int create()
- {
- int first = _last;
- int token = first;
- do
- {
- token = (token + 1) % 100;
- if (_pool.Contains(token))
- continue;
- _pool.Add(token);
- _last = token;
- scToken.IntValue = _last;
- return _last;
- } while (token != first);
- throw (new ExcuteFailedException("Get token failed,pool is full"));
- }
- public void release(int token)
- {
- _pool.Remove(token);
- }
- public void release()
- {
- _last = 0;
- _pool.Clear();
- }
- }
- public enum GM201LVPPositonEnum
- {
- RegisteredPosition,
- ReadyPosition,
- IntermediatePosition,
- MappingStartPosition,
- MappingFinishPosition,
- }
- }
|