From afb91739ea7e47c20a0e1f526a841e5089e7e716 Mon Sep 17 00:00:00 2001 From: 천호석 <hosuk1418@naver.com> Date: 수, 02 11월 2022 16:40:20 +0900 Subject: [PATCH] Width Measurement 4Point 2번 측정할 수 있도록 변경. --- 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