From 3e91a18f75a75fbe8f646d73e4e68ba107b6750b Mon Sep 17 00:00:00 2001 From: chenluhua1980 <Chenluhua@qq.com> Date: 星期四, 08 一月 2026 21:04:26 +0800 Subject: [PATCH] 1.增加状态是否远程禁等逻辑; --- SourceCode/Bond/EAPSimulator/CHsmsActive.h | 31 ++++++++++++++++++++++++++++++- 1 files changed, 30 insertions(+), 1 deletions(-) diff --git a/SourceCode/Bond/EAPSimulator/CHsmsActive.h b/SourceCode/Bond/EAPSimulator/CHsmsActive.h index b814d4b..00efb31 100644 --- a/SourceCode/Bond/EAPSimulator/CHsmsActive.h +++ b/SourceCode/Bond/EAPSimulator/CHsmsActive.h @@ -4,6 +4,13 @@ #include <map> #include <set> #include "CCollectionEvent.h" +#include "ProcessJob.h" + + +#define SVID_ControlState 600 +#define SVID_CJobSpace 5001 +#define SVID_PJobSpace 5002 +#define SVID_PJobQueued 5003 typedef std::function<void(void* pFrom, ACTIVESTATE state)> STATECHANGED; @@ -36,6 +43,14 @@ // Are You There int hsmsAreYouThere(); + // ControlState: Request Online/Offline (S1F17 / S1F15) + int hsmsRequestOnline(); + int hsmsRequestOffline(); + + // ControlState: GoLocal/GoRemote (S2F41) + int hsmsGoLocal(); + int hsmsGoRemote(); + // Date time sync int hsmsDatetimeSync(); @@ -61,6 +76,9 @@ int hsmsTransmitSpooledData(); int hsmsPurgeSpooledData(); + // 查询变量 + int hsmsSelectedEquipmentStatusRequest(unsigned int SVID); + // 查询PPID List int hsmsQueryPPIDList(); @@ -73,10 +91,21 @@ int hsmsProceedWithCarrier(unsigned int DATAID, const char* pszCarrierId, unsigned char PTN); - int CHsmsActive::hsmsCarrierRelease(unsigned int DATAID, + int hsmsProceedWithSlotMap(unsigned int DATAID, + const char* pszCarrierId, + unsigned char PTN, + const char* pszLotId, + const std::vector<std::string>& panelIds, + const std::vector<unsigned char>& slotMap); + int hsmsCarrierRelease(unsigned int DATAID, const char* pszCarrierId, unsigned char PTN); + // S16F15 + int hsmsPRJobMultiCreate(std::vector<SERVO::CProcessJob*>& pjs); + + // S14F9 + int hsmsCreateControlJob(const char* pszControlJobId, std::vector<std::string>& processJobIds); // 通过的reply函数 void replyAck(int s, int f, unsigned int systemBytes, BYTE ack, const char* pszAckName); -- Gitblit v1.9.3