修改结构体

This commit is contained in:
cxh 2026-01-22 15:40:25 +08:00
parent 53de68b400
commit d1e9d2fe00

View File

@ -9,9 +9,12 @@ struct RadioInfo
{
int rsrp = -999; // dBm
int rsrq = -999; // dB
float sinr = -999; // dB
std::string rat; // LTE / NR5G / etc.
std::string band;
int sinr = -999; // dB
int pci = -1; // 物理小区 ID
int band = -1; // 频点 Band
std::string raw; // 原始 AT 返回内容
};
extern RadioInfo g_radio_info;