From 5ce2e7ca14f09da2138ea783ef16044a01423413 Mon Sep 17 00:00:00 2001 From: SWK <sungwk82@diteam.co.kr> Date: 금, 10 3월 2023 15:30:57 +0900 Subject: [PATCH] #4403 CF AOI Review TACT 개선 1. Alive 신호 처리 시 지연 개선 --- DitGlassRawMessenger/DitGlassRawMessenger/GlassRawCPJT.cpp | 7 +++++-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/DitGlassRawMessenger/DitGlassRawMessenger/GlassRawCPJT.cpp b/DitGlassRawMessenger/DitGlassRawMessenger/GlassRawCPJT.cpp index 2055277..ef25ec9 100644 --- a/DitGlassRawMessenger/DitGlassRawMessenger/GlassRawCPJT.cpp +++ b/DitGlassRawMessenger/DitGlassRawMessenger/GlassRawCPJT.cpp @@ -1307,10 +1307,13 @@ } // 16 2 STACK_COUNT // Count of Defect detected step SPRINTRAW(2, "%2d", pDefectData->m_nStackStepCount); - // 17 60 STACK_STEP // Flow(Step) of defect detection + // 17 60 -> 400 STACK_STEP // Flow(Step) of defect detection if (strlen(pDefectData->m_strStackFirst)) { - SPRINTRAW(60, "%s", pDefectData->m_strStackFirst); + /* < KMH 20220712 : #4230 MOD Start > */ + //SPRINTRAW(60, "%s", pDefectData->m_strStackFirst); + SPRINTRAW(400, "%s", pDefectData->m_strStackFirst); + /* < KMH 20220712 : #4230 MOD End > */ } else { -- Gitblit v1.9.3