From cc5d5e2f817077c13dad3563656eb1caaddf107f Mon Sep 17 00:00:00 2001 From: zw <3466561528@qq.com> Date: Tue, 16 Sep 2025 11:11:40 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E4=BA=86=E5=AE=9E=E6=97=B6?= =?UTF-8?q?=E4=B8=8A=E9=80=81=E4=B8=AA=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- LFtid1056/PQSMsg.h | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/LFtid1056/PQSMsg.h b/LFtid1056/PQSMsg.h index f4c87aa..31e32e2 100644 --- a/LFtid1056/PQSMsg.h +++ b/LFtid1056/PQSMsg.h @@ -1768,9 +1768,7 @@ public: // 26-33: 电压电流序分量(前8个元素) for (int i = 0; i < 2; ++i) { for (int j = 0; j < 4; ++j) { // 取每行的前4个元素 - if (i == 0 || j < 3) { // 确保只取8个 - float_buffer.push_back(UI_Seq[i][j]); - } + float_buffer.push_back(UI_Seq[i][j]); } } @@ -1888,9 +1886,7 @@ public: // 26-33: 电压电流序分量(前8个元素) for (int i = 0; i < 2; ++i) { for (int j = 0; j < 4; ++j) { - if (i == 0 || j < 3) { - float_buffer.push_back(UI_Seq[i][j]); - } + float_buffer.push_back(UI_Seq[i][j]); } }