From b5285ab43a0816b033a30220457319cb04d1d6d6 Mon Sep 17 00:00:00 2001 From: CJY Date: Fri, 1 Aug 2025 13:28:55 +0900 Subject: [PATCH] =?UTF-8?q?-=20(=EB=B2=84=EA=B7=B8=EC=88=98=EC=A0=95)=20Op?= =?UTF-8?q?erationMode=20->=20CommMode?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- INT63DC_6CH/Forms/FormMain.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/INT63DC_6CH/Forms/FormMain.cs b/INT63DC_6CH/Forms/FormMain.cs index 503d08b..4784260 100644 --- a/INT63DC_6CH/Forms/FormMain.cs +++ b/INT63DC_6CH/Forms/FormMain.cs @@ -1533,7 +1533,7 @@ namespace INT63DC_6CH.Forms if (weightLimit.ToString().Length != 0) this.ChildFormMainDisplay.UpdateDisplayPinchPointAlarm(weightLimit.ToString()); - if (this.SystemConfig.EthernetOperationMode == (int)DataStore.E_CommMode.f4_Modbus) + if (this.SystemConfig.EthernetMode == (int)DataStore.E_CommMode.f4_Modbus) this.Update30000ModbusData(i); } } @@ -1566,7 +1566,7 @@ namespace INT63DC_6CH.Forms if (weightLimit.ToString().Length != 0) this.ChildFormMainDisplay.UpdateDisplayPinchPointAlarm(weightLimit.ToString()); - if (this.SystemConfig.EthernetOperationMode == (int)DataStore.E_CommMode.f4_Modbus) + if (this.SystemConfig.EthernetMode == (int)DataStore.E_CommMode.f4_Modbus) this.Update30000ModbusData(this.CollectionWeightData.Count - i); } }