- 부팅 시, 메인보드 카운트 값이 LCD 값보다 클 경우에만 LCD 카운트 값을 보드 카운트 값으로 변경하도록 수정

master
DESKTOP-999R8N3\CJY 2024-09-23 15:41:29 +09:00
parent 66045b3716
commit f0e27f4ba5
4 changed files with 13 additions and 8 deletions

View File

@ -25,8 +25,8 @@ namespace ITC81DB_2H.Forms
public partial class FormMain : Form
{
#region Field
public static string DisplayVersion = "3.3.4";
public static string ReleaseDate = "2024.08.09";
public static string DisplayVersion = "3.3.5";
public static string ReleaseDate = "2024.09.23";
private SmartSplash SmartSplashProgramLoad;
public bool IsCommunicationLogOpen;
@ -1044,22 +1044,22 @@ namespace ITC81DB_2H.Forms
{
if (this.SystemConfig1.ProductNumber == wData.BoardProductNumber)
{
if (wData.ExNGCount != wData.BoardExNGCount)
if (wData.ExNGCount < wData.BoardExNGCount)
this.CurrentWeightData.ETCExNGCount = wData.BoardExNGCount - wData.BoardMetalDetectionCount - wData.BoardDoubleEntryCount;
if (wData.MetalDetectionCount != wData.BoardMetalDetectionCount)
if (wData.MetalDetectionCount < wData.BoardMetalDetectionCount)
this.CurrentWeightData.MetalDetectionCount = wData.BoardMetalDetectionCount;
if (wData.DoubleEntryCount != wData.BoardDoubleEntryCount)
if (wData.DoubleEntryCount < wData.BoardDoubleEntryCount)
this.CurrentWeightData.DoubleEntryCount = wData.BoardDoubleEntryCount;
if (wData.OverCount != wData.BoardOverCount)
if (wData.OverCount < wData.BoardOverCount)
this.CurrentWeightData.OverCount = wData.BoardOverCount;
if (wData.PassCount != wData.BoardPassCount)
if (wData.PassCount < wData.BoardPassCount)
this.CurrentWeightData.PassCount = wData.BoardPassCount;
if (wData.UnderCount != wData.BoardUnderCount)
if (wData.UnderCount < wData.BoardUnderCount)
this.CurrentWeightData.UnderCount = wData.BoardUnderCount;
if (wData.StartTime.Year == 1111)

View File

@ -13,6 +13,11 @@
기본형 컨베어 고정밀센서 계량기
*/
@ Ver 3.3.5 by CJY
- 2024.09.23
- Ver 3.3.4 Modify
- 부팅 시, 메인보드 카운트 값이 LCD 값보다 클 경우에만 LCD 카운트 값을 보드 카운트 값으로 변경하도록 수정
@ Ver 3.3.4 by CJY
- 2024.08.09
- Ver 3.3.3 Modify