From 31aa10eaae103c30e02d7dc6c71ff4e50de361b3 Mon Sep 17 00:00:00 2001 From: mrDarker <mr.darker@163.com> Date: 星期一, 12 五月 2025 15:28:32 +0800 Subject: [PATCH] 1. 修改报警的显示模式(包括日志,需要后期修复) 2. 添加Release模式编译 --- SourceCode/Bond/Servo/Common.h | 19 +++++++++++++++++++ 1 files changed, 19 insertions(+), 0 deletions(-) diff --git a/SourceCode/Bond/Servo/Common.h b/SourceCode/Bond/Servo/Common.h index c8ae7ab..34d4258 100644 --- a/SourceCode/Bond/Servo/Common.h +++ b/SourceCode/Bond/Servo/Common.h @@ -279,3 +279,22 @@ #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_NG 2 +#define MRLRC_CONTINUE 3 +#define MRLRC_MASTER_RECIPE_LIST_COUNT_NG 4 +#define MRLRC_GROUP_COUNT_NG 5 +#define MRLRC_DUPLICATION_GROUP_COUNT_NG 6 +#define ORDER_BY_GROUP_COUNT_NG 7 + + -- Gitblit v1.9.3