장비 auto mode가 아닐 때 power meter 위치에서 벗어나 laser on 할 시 laser off 후 interlock 발생.
1개 파일 변경됨
15 ■■■■■ 파일 변경됨
SHARP_CLAS_UI/500.Equipment/Equipment.cs 15 ●●●●● 패치 | 보기 | raw | blame | 히스토리
SHARP_CLAS_UI/500.Equipment/Equipment.cs
@@ -997,6 +997,21 @@
                    panel_count_info.CleaningCount = 0;
                    Panel_Count_Info_Manager.Instance.Save_Panel_Count_Info(panel_count_info);
                }
                if(equip_mode != En_Equipment_Mode.Auto) // Auto mode가 아닐 때
                {
                    if(units.Exists(x => x.UnitMode != equip_mode) == false) //장비 상태가 다른게 있는지 확인
                    {
                        if(process.ablation.Get_Is_Position_X_Power_Meter() && process.ablation.Get_Is_Position_Z_Power_Meter())
                        {
                            if (sm.Get_Bit(Input_Memory_Address.Laser_Active))
                            {
                                scanner.Set_Laser_Off();
                                Interlock_Manager.Add_Interlock_Msg("Laser can't on.", "Please move power meter position.");
                            }
                        }
                    }
                }
            }
            catch(Exception e)
            {