3

Is there any way to capture Layer 1/3 RF related information’s or to get NV items from Android, Qualcomm devices?

I found some parameters from android documentation and also i tried Qualcomm NV Tool but didn’t worked.

Then I used busybox and run AT commands to get some information’s, echo "AT+COPS=?\r" | busybox microcom -t 5000 /dev/smd11.

Please advice..

Thank you.

Tony
  • 894
  • 4
  • 19

1 Answers1

1

Yes, of course, but you can't use the AT command interpreter for that because the Layer 1/2/3 data feed is enormous. Qualcomm devices uses anther format to connect and send commands to modem. What you find as AT is just a very limited wrapper around that. What you need are the Qualcomm proprietary tools known as QXDM and QCAT, these also have a Python API and tons of other features. (A third tool called QPST is used to connect the device to these tools.) The list of Qualcomm's NV items are included in those tools and the upper range of those are slightly different for every modem, and which is for OEM customization. HERE is a very old list with some of those.

And here is a more convenient tool to get diagnostic data from QC modems.

not2qubit
  • 14,531
  • 8
  • 95
  • 135