From b38a5723b06c7a9e5ec350b1942881338453ef75 Mon Sep 17 00:00:00 2001
From: LAPTOP-SNT8I5JK\Boounion <Chenluhua@qq.com>
Date: 星期二, 26 八月 2025 15:04:28 +0800
Subject: [PATCH] 1.PJStart事件上报功能实现,EAP模拟器接收数据并验证;
---
SourceCode/Bond/Servo/CMaster.cpp | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/SourceCode/Bond/Servo/CMaster.cpp b/SourceCode/Bond/Servo/CMaster.cpp
index c304508..dfc2cc9 100644
--- a/SourceCode/Bond/Servo/CMaster.cpp
+++ b/SourceCode/Bond/Servo/CMaster.cpp
@@ -773,6 +773,11 @@
auto pj = acquireNextProcessJob();
if (pj != nullptr) {
m_inProcesJobs.push_back(pj);
+
+ // 这里上报PJ Start事件
+ if (m_listener.onPjStart != nullptr) {
+ m_listener.onPjStart(this, pj);
+ }
}
}
if (m_inProcesJobs.empty()) {
--
Gitblit v1.9.3