RADIUSdesk

logo

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
technical:lte [2022/11/23 14:30]
admin [UCI Configuration]
technical:lte [2022/11/23 14:56] (current)
admin [Using AT Commands]
Line 38: Line 38:
   * qmi-utils   * qmi-utils
   * picocom   * picocom
 +  * luci-proto-qmi
 <code bash> <code bash>
 opkg update opkg update
-opkg install picocom qmi-utils+opkg install picocom qmi-utils uci-proto-qmi
 </code> </code>
  
Line 54: Line 55:
 <code bash> <code bash>
 uqmi -d /dev/cdc-wdm0 --get-data-status uqmi -d /dev/cdc-wdm0 --get-data-status
 +#This is the return
 +"connected"
 +
 uqmi -d /dev/cdc-wdm0 --get-signal-info uqmi -d /dev/cdc-wdm0 --get-signal-info
 +#This is the return
 +{
 + "type": "lte",
 + "rssi": -69,
 + "rsrq": -11,
 + "rsrp": -96,
 + "snr": 11.000000
 +}
 +
 uqmi -d /dev/cdc-wdm0 --get-system-info uqmi -d /dev/cdc-wdm0 --get-system-info
 +#This is the return
 +{
 + "wcdma": {
 + "service_status": "none",
 + "true_service_status": "none",
 + "preferred_data_path": false
 + },
 + "lte": {
 + "service_status": "available",
 + "true_service_status": "available",
 + "preferred_data_path": false,
 + "domain": "cs-ps",
 + "service": "cs-ps",
 + "roaming_status": "off",
 + "forbidden": false,
 + "mcc": "655",
 + "mnc": "07",
 + "tracking_area_code": 18,
 + "enodeb_id": 18353,
 + "cell_id": 80,
 + "voice_support": true,
 + "ims_voice_support": false,
 + "cell_access_status": "all calls",
 + "registration_restriction": 0,
 + "registration_domain": 0
 + }
 +}
 </code> </code>
  
Line 93: Line 133:
  
 </code> </code>
 +  * You can allos issue the following command without needing to log into picocom 
 +<code bash> 
 + echo 'AT+CUSD=1,"*101#",15' | picocom -qrix 10000 /dev/ttyUSB2 
 +#Here is what my provider returned 
 ++CUSD: 0,"Balance: R 0.00 .Data: 6.40 MB.",15 
 +</code>