From f4a795105507799c5446657aa1b915ef70293af1 Mon Sep 17 00:00:00 2001 From: mrDarker <mr.darker@163.com> Date: 星期一, 04 八月 2025 18:20:17 +0800 Subject: [PATCH] 1. 修改SGMeasurement工程文件,添加生成后事件和远程调试 --- SourceCode/Bond/EAPSimulator/CHsmsActive.h | 16 ++++++++++++++++ 1 files changed, 16 insertions(+), 0 deletions(-) diff --git a/SourceCode/Bond/EAPSimulator/CHsmsActive.h b/SourceCode/Bond/EAPSimulator/CHsmsActive.h index 759426f..7a93948 100644 --- a/SourceCode/Bond/EAPSimulator/CHsmsActive.h +++ b/SourceCode/Bond/EAPSimulator/CHsmsActive.h @@ -1,6 +1,9 @@ #pragma once #include <string> #include <vector> +#include <map> +#include <set> +#include "CCollectionEvent.h" typedef std::function<void(void* pFrom, ACTIVESTATE state)> STATECHANGED; @@ -45,6 +48,19 @@ // 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); + + // Configure Spooling + int hsmsConfigureSpooling(std::map<unsigned int, std::set<unsigned int>>& spoolingConfig); + + // 发送或清空缓存的消息 + int hsmsTransmitSpooledData(); + int hsmsPurgeSpooledData(); + // 通过的reply函数 void replyAck(int s, int f, unsigned int systemBytes, BYTE ack, const char* pszAckName); -- Gitblit v1.9.3