From 38fdd2e7d1d45a3ffed57fde30031a6a8f04d235 Mon Sep 17 00:00:00 2001
From: LAPTOP-SNT8I5JK\Boounion <Chenluhua@qq.com>
Date: 星期一, 05 五月 2025 18:02:20 +0800
Subject: [PATCH] 1.获取配方列表,已处理待测试。
---
SourceCode/Bond/Servo/Common.h | 22 ++++++++++++++++++++++
1 files changed, 22 insertions(+), 0 deletions(-)
diff --git a/SourceCode/Bond/Servo/Common.h b/SourceCode/Bond/Servo/Common.h
index 78351fa..5314223 100644
--- a/SourceCode/Bond/Servo/Common.h
+++ b/SourceCode/Bond/Servo/Common.h
@@ -139,6 +139,8 @@
#define STEP_EQ_SENT_OUT_JOB_DOWNS2 _T("EQJESentOutJobDowns2")
#define STEP_EQ_VCR1_EVENT_REPORT _T("EQVcr1EventReport")
#define STEP_EQ_RURRENT_RECIPE_CHANGE _T("EQCurrentRecipeChange")
+#define STEP_EQ_MASTER_RECIPE_LIST_REQ _T("EQMasterRecipeListReq")
+#define STEP_EQ_MASTER_RECIPE_LIST _T("EQMasterRecipeListReport")
/* Step ID */
@@ -148,6 +150,7 @@
#define STEP_ID_DATETIME_SET_CMD_REPLY 0x553
#define STEP_ID_VCR_ENABLE_CMD_REPLY 0x554
#define STEP_ID_EQMODE_CHANGE_CMD_REPLY 0x555
+#define STEP_ID_MASTER_RECIPE_LIST_CMD_REPLY 0x556
#define STEP_ID_EQMODE_CHANGED 0x560
#define STEP_ID_EQSTATUS_CHANGED 0x561
#define STEP_ID_EQALARM1 0x562
@@ -159,6 +162,7 @@
#define STEP_ID_CURRENT_RECIPE_CHANGE_REPORT 0x568
#define STEP_ID_CIM_MSG_CONFIRM_REPORT 0x569
#define STEP_ID_VCR1_EVENT_REPORT 0x56A
+#define STEP_ID_MASTER_RECIPE_LIST_REPORT 0x56B
#define STEP_ID_RECIVE_JOB_UPS1 0x580
#define STEP_ID_RECIVE_JOB_UPS2 0x581
#define STEP_ID_SENT_OUT_JOB_DOWNS1 0x590
@@ -275,3 +279,21 @@
#define CASSETTE_PROCCESS_COMPLETED 7
+/*
+ Master Recipe List Return Code Block Description
+ 1 OK : Recipe List Received Result is all ok
+ 2 Continue : Equipment still has to send the master recipe list to EAS because EAS is not yet received all master recipe list.
+ 3 Master Recipe list Count NG : Total Group Count is same as Current Group Count but it’s different with Total Master Recipe List Count.
+ 4 Group Count NG : Total Group Count is different with Current Group Count but it’s same with Total Master Recipe Count.
+ 5 Duplication Group Count NG : Current Group Count is duplicate with previous group count.Equipment has to send the next group count to EAS.
+ 6 Order by Group Count NG : Group Count is not sent order by next group count to EAS.Group Count has to send by order the next group count
+*/
+#define MRLRC_CURRENT_RECIPE_COMPLETE 0
+#define MRLRC_OK 1
+#define MRLRC_CONTINUE 2
+#define MRLRC_MASTER_RECIPE_LIST_COUNT_NG 3
+#define MRLRC_GROUP_COUNT_NG 4
+#define MRLRC_DUPLICATION_GROUP_COUNT_NG 5
+#define ORDER_BY_GROUP_COUNT_NG 6
+
+
--
Gitblit v1.9.3