From d1e9d2fe0084b691b5be6e76b73f3bf6f6bc020a Mon Sep 17 00:00:00 2001 From: cxh Date: Thu, 22 Jan 2026 15:40:25 +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 | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/include/serial_AT.hpp b/include/serial_AT.hpp index 0b3fc48..ffb280a 100644 --- a/include/serial_AT.hpp +++ b/include/serial_AT.hpp @@ -7,11 +7,14 @@ extern std::string IMEI; struct RadioInfo { - int rsrp = -999; // dBm - int rsrq = -999; // dB - float sinr = -999; // dB - std::string rat; // LTE / NR5G / etc. - std::string band; + int rsrp = -999; // dBm + int rsrq = -999; // dB + int sinr = -999; // dB + + int pci = -1; // 物理小区 ID + int band = -1; // 频点 Band + + std::string raw; // 原始 AT 返回内容 }; extern RadioInfo g_radio_info;