From 26726207809a206fb8ddd3e778ac76ddbfb892ef Mon Sep 17 00:00:00 2001 From: cxh Date: Thu, 22 Jan 2026 15:48:31 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=BB=93=E6=9E=84=E4=BD=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- include/serial_AT.hpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/include/serial_AT.hpp b/include/serial_AT.hpp index ffb280a..112b189 100644 --- a/include/serial_AT.hpp +++ b/include/serial_AT.hpp @@ -7,14 +7,14 @@ extern std::string IMEI; struct RadioInfo { - int rsrp = -999; // dBm - int rsrq = -999; // dB - int sinr = -999; // dB + int pci = -1; // 物理小区 ID + int band = -1; // LTE/NR Band(如果你要解析可以填) + int arfcn = -1; // 频点号,NR/SA必有字段 + int rsrp = 0; // dBm + int rsrq = 0; // dB + int sinr = 0; // dB - int pci = -1; // 物理小区 ID - int band = -1; // 频点 Band - - std::string raw; // 原始 AT 返回内容 + std::string raw; // 调试原始串 }; extern RadioInfo g_radio_info;