From 247a2a9a9f3d699df42a009bf124d3b536ad6b37 Mon Sep 17 00:00:00 2001 From: LAPTOP-SNT8I5JK\Boounion <Chenluhua@qq.com> Date: 星期五, 25 七月 2025 14:23:55 +0800 Subject: [PATCH] 1.Master端,Line Event Report功能修改完善,并通过EAP模拟测试OK; --- 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 0be2d4f..a5925e6 100644 --- a/SourceCode/Bond/EAPSimulator/CHsmsActive.h +++ b/SourceCode/Bond/EAPSimulator/CHsmsActive.h @@ -1,5 +1,9 @@ #pragma once #include <string> +#include <vector> +#include <map> +#include "CCollectionEvent.h" + typedef std::function<void(void* pFrom, ACTIVESTATE state)> STATECHANGED; typedef struct _ACTIVEListener @@ -25,10 +29,35 @@ // Deselect Request int hsmsDeselectRequest(); - // 建立通讯(S1F13) int hsmsEstablishCommunications(); + // Are You There + int hsmsAreYouThere(); + + // Date time sync + int hsmsDatetimeSync(); + + // terminal display + int hsmsTerminalDisplay(BYTE tid, const char* pszText); + + // Enable/Disable Event Report + int hsmsEDEventReport(bool bEnable, std::vector<int>& ids); + + // Enable/Disable Alarm Report + int hsmsEDAlarmReport(bool bEnable, unsigned int id); + + // Define reports + int hsmsDefineReports(std::map<unsigned int, std::vector<unsigned int>>& mapReport); + + // Line Event Report + int hsmsLinkEventReport(std::map<unsigned int, std::vector<unsigned int>>& mapEvent); + + // 通过的reply函数 + void replyAck(int s, int f, unsigned int systemBytes, BYTE ack, const char* pszAckName); + + // reply ack0 + int replyAck0(IMessage* pMessage); private: ACTIVEListener m_listener; -- Gitblit v1.9.3