From f0839d9fdd9dc74eef0eafc5562fabf9d7259f08 Mon Sep 17 00:00:00 2001
From: 천호석 <hosuk1418@naver.com>
Date: 수, 14 12월 2022 17:46:40 +0900
Subject: [PATCH] 1. Laser on 시 Stage position도 같이 확인 하도록 변경. 2. Auto power 측정, Manual power 측정  전후  Scanner Z 축 대기 위치 이동 하도록 수정 3. 프로그램 종료 시 Laser off 하도록 수정. 종료 대기시간 5sec

---
 SHARP_CLAS_UI/500.Equipment/400.Module/000.Vision/Vision_Define.cs |   23 +++++++++++++++++++++++
 1 files changed, 23 insertions(+), 0 deletions(-)

diff --git a/SHARP_CLAS_UI/500.Equipment/400.Module/000.Vision/Vision_Define.cs b/SHARP_CLAS_UI/500.Equipment/400.Module/000.Vision/Vision_Define.cs
index 17964fb..71617cf 100644
--- a/SHARP_CLAS_UI/500.Equipment/400.Module/000.Vision/Vision_Define.cs
+++ b/SHARP_CLAS_UI/500.Equipment/400.Module/000.Vision/Vision_Define.cs
@@ -6,6 +6,7 @@
         Pre_Align,
         Fine_Align,
         Measurement,
+        MeasurementWidth,
     }
 
     public enum En_Module_Idx : int
@@ -163,6 +164,28 @@
         }
     }
 
+    public struct WidthMeasurementResultAck
+    {
+        public int msg_Index { get; private set; }
+        public int moduleIdx { get; private set; }
+        public int measurement_result { get; private set; }
+        public double Mark1Width { get; private set; }
+        public double Mark2Width { get; private set; }
+        public double Mark3Width { get; private set; }
+        public double Mark4Width { get; private set; }
+
+        public WidthMeasurementResultAck(int msg_Index = 0, int moduleIdx = 0, int measurement_result = 0, double mark1Width = 0, double mark2Width = 0, double mark3Width = 0, double mark4Width = 0)
+        {
+            this.msg_Index = msg_Index;
+            this.moduleIdx = moduleIdx;
+            this.measurement_result = measurement_result;
+            this.Mark1Width = mark1Width;
+            this.Mark2Width = mark2Width;
+            this.Mark3Width = mark3Width;
+            this.Mark4Width = mark4Width;
+        }
+    }
+
     public struct MotorPosMoveReq
     {
         public int msg_Index{ get; private set; }

--
Gitblit v1.9.3