@ Ver 12.4.2 by LSJ

- 2026.01.16
 - Ver 12.4.1 Modify
 - Framework : SmartX Framework V3.2.4(update: 2021.01.20)
 - 스틱2모드에서 데이터 백업 저장시
   [장비설정] - [통합전송] 기능 ON 으로 자동 저장 되도록 수정 (스틱2모드에서 데이터 저장하려면 무조건 ON 되어야함)
   통합전송 초기값 ON 으로 수정
 - 스틱2일때 통합전송에 따른 타이머 시간 설정 수정
   부팅할때 한번만 셋팅하도록 되어 있었음
   timeout 시간 : 판정지연 -100
   품번 전환 시 timeout 시간 재설정 하도록 코드 추가
master V12.4.2
sj84 2026-01-16 15:46:11 +09:00
parent 0de1af69d0
commit a1c85a6e12
5 changed files with 27 additions and 7 deletions

View File

@ -1287,7 +1287,7 @@ namespace INT69DC_7C
this.IsOptDataStatistics = false;
this.IsPrintPerProductEnable = false;
this.IsAlarmContinuousNGEnable = false;
this.IsIntegratedTransmission = false;
this.IsIntegratedTransmission = true; // 통합전송 기능 Default "ON"
this.IsSamplingView = false;
this.IsAlarmTotalPassCntEnable = false;
this.IsOptPart11 = false;
@ -1326,7 +1326,7 @@ namespace INT69DC_7C
this.DataStoragePeriod = 36;
this.Unit = "g";
this.SerialNumber = "25I0000";
this.SerialNumber = "26A0000";
this.EthernetServerAddress = "0.0.0.0";
this.User_Level1_Name = "Level 1";
this.User_Level2_Name = "Level 2";

View File

@ -232,7 +232,12 @@ namespace INT69DC_7C.Forms
private void radioButtonEnable_Click(object sender, EventArgs e)
{
if (this.radioButtonEnable.Checked == true)
{
this.ParentForm.SystemConfig.IsDataBackup = true;
if (this.ParentForm.SystemConfig.EquipmentMode == 2)
this.ParentForm.SystemConfig.IsIntegratedTransmission = true;
}
else
this.ParentForm.SystemConfig.IsDataBackup = false;

View File

@ -142,7 +142,7 @@ namespace INT69DC_7C.Forms
}
private void DefaultSetting()
{
this.labelDisplayVer.Text = "12.4.0";
this.labelDisplayVer.Text = "12.4.2";
if(this.ParentForm.SystemConfig.EquipmentMode == 7)
this.labelTitleMainboardName.Text = "INT68M-2A";

View File

@ -1485,6 +1485,9 @@ namespace INT69DC_7C.Forms
this.MainDisplayFeedbaack.UpdateFeedbackDisplay(this.ParentForm.CurrentFeedbackItem, this.ParentForm.SystemConfig, pItem);
}
// timerTimeOutTransmission
this.ParentForm.timerTimeOutTransmission.Interval = jItem.JudgmentDelayTime - 100;
switch (this.ParentForm.SystemConfig.EquipmentColumns)
{
case 7:

View File

@ -5,10 +5,10 @@
H/W : IEC1000-150
O/S : WinCE 6.0
Framework : 20160203 SmartX Framework V2.7(update: 2016.01.25)
20180712 SmartX Framework V3.0.3(update: 2018.05.10)
20190408 SmartX Framework V3.1.1(update: 2019.03.21)
20241105 SmartX Framework V3.2.4(update: 2021.01.20)
Framework : V1.0.0 - SmartX Framework V2.7(update: 2016.01.25)
V6.0.0 - SmartX Framework V3.0.3(update: 2018.05.10)
V7.0.0 - SmartX Framework V3.1.1(update: 2019.03.21)
V12.0.0 - SmartX Framework V3.2.4(update: 2021.01.20)
DLL
DllUserMgr.dll
@ -24,6 +24,18 @@
멀티형 8,10,12열 컨베어/스틱 계량기
*/
@ Ver 12.4.2 by LSJ
- 2026.01.16
- Ver 12.4.1 Modify
- Framework : SmartX Framework V3.2.4(update: 2021.01.20)
- 스틱2모드에서 데이터 백업 저장시
[장비설정] - [통합전송] 기능 ON 으로 자동 저장 되도록 수정 (스틱2모드에서 데이터 저장하려면 무조건 ON 되어야함)
통합전송 초기값 ON 으로 수정
- 스틱2일때 통합전송에 따른 타이머 시간 설정 수정
부팅할때 한번만 셋팅하도록 되어 있었음
timeout 시간 : 판정지연 -100
품번 전환 시 timeout 시간 재설정 하도록 코드 추가
@ Ver 12.4.1 by CJY
- 2025.11.05
- Ver 12.4.0 Modify