Where can I access modem "cells" data

Hello, is there a way to access the "cells" data with scripting? I'd like to include band, signal quality and frequency in my custom dashboard. UQMI doesn't return much and I've not been able to use /usr/bin/gl_modem -B /dev/bus/usb/001/002 signal successfully, perhaps the information is in a text file somewhere or there is another way to read this data?

See if this AT command meets your request:

AT+QENG="servingcell"

Also if youre looking for other bands available at your area:

For LTE:
AT+QENG="neighbourcell"

For NR:
AT+QNWCFG="nr5g_meas_info",1
AT+QNWCFG="nr5g_meas_info"

Theres AT+QSCAN command also but this needs to have an AT terminal that is capable of waiting for the command to finish (without fixed timeout).

1 Like

+QENG: "servingcell","NOCONN","NR5G-SA","TDD",310,260,189122138,437,844500,521310,41,11,-107,-3,8,1,-

Ya, thats seems to be the ticket and I also found how to decode it:
+QENG: "servingcell",,"LTE",<is_tdd>,,,,,,<freq_band_ind>,<UL_bandwidth>,<DL_bandwidth>,,,,,,,<tx_power>,

I do not know why mine is claiming NOCONN but no matter, it has the data I want.

misuzu, ya I've used that before with Picocom but for me it's not that important as of now.

Btw these will only show the PCC for LTE and SCC NR if NSA. To view all connected bands, use AT+QCAINFO

Ahh, I did in fact miss that command in the at command PDF, thank you for pointing that out.