Android: How to read low level network info (RSCP, EcN0, Layer 3 Signalling)?

纵然是瞬间 提交于 2019-12-04 11:36:23

What AT Commands should I use to read RxLevel, RXQuality, CellID, LocationAreaCode, RSCP, EcN0, CQI?

AT+CREG? gives CellId and LAC

+CSQ gives RSSI in dBm and RXQUAL

See 3GPP TS 27.007 for standard 3GPP AT commands, available from www.3gpp.org. Your device probably supports some manufacturer-specific AT commands as well.

Is it possible to read Level 3 signalization by using AT Commands?

No, you can't read RRC messages, only selected parameters from them. You can read the layer 3 signalling messages using Qualcomm diagnostic tools, but you have to have an agreement with Qualcomm to get these.

Is there better Android Qualcomm API to get these informations? What is Gobi / QMI interface and can it be used for reading Network data?

Gobi/QMI is the Qualcomm interface. There is also information about AT commands supported by Qualcomm devices at Qualcomm documentation

Hope this helps.

In a terminal window you can run an e.g., (busybox) awk script that processes the output of logcat -b radio, producing e.g.,

16:33:18 CREG: 1, "28D6", "01C6B623", 2
[10454 29799971 00454 46627]
16:33:19 ECSQ: 8, 99, -392, [-98] -455, -62

Anyway, "logcat -b radio" might already contain all that you are looking for.

There is application in Android market called " RF Signal Tracker" this will give you RF levels along with Cell ID info.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!