Merge branch 'B_8.7.0'

master
DESKTOP-S459P9R\LSJ 2025-10-22 10:33:27 +09:00
commit 321c641bf4
10 changed files with 17 additions and 13 deletions

View File

@ -394,6 +394,8 @@ namespace INT63DC_2C
public static readonly string Start = "Cbs00"; public static readonly string Start = "Cbs00";
// 정지 // 정지
public static readonly string Stop = "Cbt00"; public static readonly string Stop = "Cbt00";
// 소거
public static readonly string Clear = "Cbe00";
// 영점 // 영점
public static readonly string Zero = "Cbz00"; public static readonly string Zero = "Cbz00";
// NG Signal // NG Signal

View File

@ -154,7 +154,7 @@ namespace INT63DC_2C.Forms
} }
private void DefaultSetting() private void DefaultSetting()
{ {
this.labelDisplayVer.Text = "8.8.0"; this.labelDisplayVer.Text = "8.8.1";
this.labelSerialNo.Text = this.ParentForm.SystemConfig.SerialNumber; this.labelSerialNo.Text = this.ParentForm.SystemConfig.SerialNumber;
this.textBoxSerialNo.Location = new Point(395, 225); this.textBoxSerialNo.Location = new Point(395, 225);
this.textBoxSerialNo.Visible = false; this.textBoxSerialNo.Visible = false;

View File

@ -2197,7 +2197,7 @@ namespace INT63DC_2C.Forms
if (alarm.IsEmergencyStop == true) if (alarm.IsEmergencyStop == true)
{ {
this.MainDisplayAlarmList.listBoxMessage.AddItem("Emergency Stop"); this.MainDisplayAlarmList.listBoxMessage.AddItem("Emergency Stop");
isAlarmMessageView = true; //isAlarmMessageView = true;
} }
if (alarm.IsServoAlarm == true) if (alarm.IsServoAlarm == true)
{ {
@ -2277,8 +2277,8 @@ namespace INT63DC_2C.Forms
{ {
this.smartListBox1.ClearAll(); this.smartListBox1.ClearAll();
if (alarm.IsEmergencyStop == true) //if (alarm.IsEmergencyStop == true)
this.smartListBox1.AddItem("Emergency Stop"); // this.smartListBox1.AddItem("Emergency Stop");
if (alarm.IsLoadcellError == true) if (alarm.IsLoadcellError == true)
this.smartListBox1.AddItem("LoadCell Error"); this.smartListBox1.AddItem("LoadCell Error");
if (alarm.IsPressureError == true) if (alarm.IsPressureError == true)
@ -2291,7 +2291,7 @@ namespace INT63DC_2C.Forms
this.smartListBox1.AddItem("Entry Sensor Error"); this.smartListBox1.AddItem("Entry Sensor Error");
if (alarm.IsAlignError == true) if (alarm.IsAlignError == true)
this.smartListBox1.AddItem("Product discharge error"); this.smartListBox1.AddItem("Product discharge error");
if(alarm.IsSorter1Error == true) if (alarm.IsSorter1Error == true)
this.smartListBox1.AddItem("Sorter1 error"); this.smartListBox1.AddItem("Sorter1 error");
if (alarm.IsSorter2Error == true) if (alarm.IsSorter2Error == true)
this.smartListBox1.AddItem("Sorter2 error"); this.smartListBox1.AddItem("Sorter2 error");
@ -2300,7 +2300,7 @@ namespace INT63DC_2C.Forms
bool isBypass = false; bool isBypass = false;
if (alarm.IsLoadcellError == true) if (alarm.IsLoadcellError == true)
{ {
foreach(WeightData data in this.ParentForm.CollectionWeightData) foreach (WeightData data in this.ParentForm.CollectionWeightData)
{ {
if (data.IsBypassMode == true) if (data.IsBypassMode == true)
{ {
@ -3032,6 +3032,8 @@ namespace INT63DC_2C.Forms
DialogFormYesNo myDlg = new DialogFormYesNo(this.ParentForm.SystemConfig.Language, 8); DialogFormYesNo myDlg = new DialogFormYesNo(this.ParentForm.SystemConfig.Language, 8);
if (myDlg.ShowDialog() == DialogResult.Yes) if (myDlg.ShowDialog() == DialogResult.Yes)
{ {
this.ParentForm.TransferData(CommunicationCommand.Clear, CommunicationID.SubBoardAll);
switch (this.ParentForm.SystemConfig.EquipmentColumns) switch (this.ParentForm.SystemConfig.EquipmentColumns)
{ {
case 2: case 2:

View File

@ -160,12 +160,6 @@ namespace INT63DC_2C.Forms
} }
private void InitializeControl() private void InitializeControl()
{ {
//// 피드백 보드 사용 유무
//if (this.ParentForm.SystemConfig.IsOptFeedbackBoardUse == true)
// this.buttonFeedbackUse.ButtonDown();
//else
// this.buttonFeedbackUse.ButtonUp();
// 데이터 통계 기능 사용 유무 // 데이터 통계 기능 사용 유무
if (this.ParentForm.SystemConfig.IsOptDataStatistics == true) if (this.ParentForm.SystemConfig.IsOptDataStatistics == true)
this.buttonDataStatistics.ButtonDown(); this.buttonDataStatistics.ButtonDown();
@ -177,6 +171,12 @@ namespace INT63DC_2C.Forms
this.buttonSorter4Location.ButtonUp(); this.buttonSorter4Location.ButtonUp();
else else
this.buttonSorter4Location.ButtonDown(); this.buttonSorter4Location.ButtonDown();
// 선별부 동작 감지 사용 여부
if (this.ParentForm.SystemConfig.IsSorterCheckEnable == true)
this.buttonSorterCheckEnable.ButtonDown();
else
this.buttonSorterCheckEnable.ButtonUp();
} }
public void DisplayRefresh() public void DisplayRefresh()

Binary file not shown.