| | |
| | | public int ULD_Tray_Empty_Count; |
| | | public int ULD_Tray_Ok_Count; |
| | | public int ULD_Tray_Ng_Count; |
| | | |
| | | public int Width_Measurement_Count; |
| | | |
| | | bool update_check; |
| | | #endregion |
| | | |
| | |
| | | if (_Parent._equip.Door_Opened) |
| | | { |
| | | Interlock_Manager.Add_Interlock_Msg("Key switch can't change.", "Door is opened"); |
| | | return; |
| | | } |
| | | |
| | | if (_Parent._equip.equip_mode == En_Equipment_Mode.Auto && _Parent.sm.Get_Bit(Output_Memory_Address.Safety_Mode_SW_Unlock) == false) |
| | | { |
| | | Interlock_Manager.Add_Interlock_Msg("Key switch can't change.", "Equipment mode is Auto"); |
| | | return; |
| | | } |
| | | |
| | |
| | | ULD_Tray_Ok_Count = int.Parse($"{value}"); |
| | | if (_Parent.sm.Get_Value(Process_Memory_Address.ULD_Tray_Ng_Count, out value)) |
| | | ULD_Tray_Ng_Count = int.Parse($"{value}"); |
| | | if (_Parent.sm.Get_Value(Process_Memory_Address.Width_Measurement_Count, out value)) |
| | | Width_Measurement_Count = int.Parse($"{value}"); |
| | | } |
| | | catch (Exception) |
| | | { |