From e2b5223a39cbb6665b368ae9fa22280e6e4e0652 Mon Sep 17 00:00:00 2001 From: jkwoo Date: Tue, 30 Dec 2025 13:33:14 +0900 Subject: [PATCH] V1.0.0.8 - 2025/12/30 * RS-485 Comm Improve --- LFP_Manager/Controls/ucMainStatus.cs | 1 + LFP_Manager/Properties/AssemblyInfo.cs | 4 ++-- LFP_Manager/Threads/CsUartThreadSB.cs | 29 -------------------------- 3 files changed, 3 insertions(+), 31 deletions(-) diff --git a/LFP_Manager/Controls/ucMainStatus.cs b/LFP_Manager/Controls/ucMainStatus.cs index 70fb4da..229e82e 100644 --- a/LFP_Manager/Controls/ucMainStatus.cs +++ b/LFP_Manager/Controls/ucMainStatus.cs @@ -360,6 +360,7 @@ namespace LFP_Manager.Controls } #endregion + #region TIMER EVENT private void tmrDisplay_Tick(object sender, EventArgs e) { diff --git a/LFP_Manager/Properties/AssemblyInfo.cs b/LFP_Manager/Properties/AssemblyInfo.cs index 4a0d92c..b4d5c17 100644 --- a/LFP_Manager/Properties/AssemblyInfo.cs +++ b/LFP_Manager/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ using System.Runtime.InteropServices; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.0.7")] -[assembly: AssemblyFileVersion("1.0.0.7")] +[assembly: AssemblyVersion("1.0.0.8")] +[assembly: AssemblyFileVersion("1.0.0.8")] diff --git a/LFP_Manager/Threads/CsUartThreadSB.cs b/LFP_Manager/Threads/CsUartThreadSB.cs index 9a8a789..28a063a 100644 --- a/LFP_Manager/Threads/CsUartThreadSB.cs +++ b/LFP_Manager/Threads/CsUartThreadSB.cs @@ -356,35 +356,6 @@ namespace LFP_Manager.Threads #region TX BUFFERING - private byte[] MakeWriteRegData(ushort DevID, ushort WriteAddr, ushort WriteLen, ref ushort[] WriteData) - { - byte[] wData = null; - - if (WriteLen > 0) - { - - } - - return wData; - } - - private string MakeCheckSum(byte[] sData, int len) - { - string result = ""; - int checksum = 0; - - for (int i = 0; i < len; i++) - { - checksum += sData[i + 1]; - } - - checksum = ~checksum + 1; - - result = String.Format("{0:X2}{1:X2}", (byte)(checksum >> 8), (byte)checksum); - - return result; - } - private byte[] MakeTxDataDelta(bool wData) { byte[] sData = null;