GetGsmNetworkList: Difference between revisions
Jump to navigation
Jump to search
(Created page with " This command allows to accept an incoming call once presented on the specified port. '''COMMAND''' {| class="wikitable" !Command !Line Arguments !Returns |- |AcceptCall |PortIndex |Error Code in case of error. |} '''OUTPUT''' Command status: <br> "%s\n", status (CONNECTED or NO INCOMING CALL) '''EXAMPLE''' <syntaxhighlight lang="text"> ~# AcceptCall 0<br> CONNECTED<br> ~# AcceptCall 2<br> NO INCOMING CALL </syntaxhighlight> Category:SMS|R2D...") Tag: 2017 source edit |
No edit summary |
||
| (6 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
This command | This command gets the PLMN (MCC and MNC), the name, the status and the access technology for all GSM operators detectable by the modem. | ||
'''COMMAND''' | '''COMMAND''' | ||
| Line 8: | Line 8: | ||
!Returns | !Returns | ||
|- | |- | ||
| | |'''GetGsmNetworkList''' | ||
|PortIndex | |PortIndex | ||
| | |List of Operators’ PLMN, status, technology and name | ||
|} | |} | ||
'''OUTPUT''' | '''OUTPUT'''<br>GSM port operator selection mode and GSM operator PLMN: | ||
"%s %s %s\n", mode, plmn, status | |||
'''Where''' technology (access technology) are : | |||
* <code>0</code> = GSM | |||
* <code>2</code> = UTRAN (3G) | |||
* <code>7</code> = LTE | |||
* <code>12</code> = NR5G (5G SA) | |||
* <code>13</code> = NR5G (5G NSA) | |||
'''EXAMPLE''' <syntaxhighlight lang="text"> | |||
~# GetGsmNetworkList 0 | |||
20801 CURRENT 7 Orange F | |||
20801 AVAILABLE 2 Orange F | |||
20801 AVAILABLE 0 Orange F | |||
20810 AVAILABLE 7 F SFR | |||
20815 FORBIDDEN 7 Free | |||
20820 FORBIDDEN 2 F-Bouygues Telecom | |||
20820 FORBIDDEN 7 F-Bouygues Telecom | |||
</syntaxhighlight> | </syntaxhighlight> | ||
[[Category: | [[Category:NETWORK]] | ||
[[Category: | [[Category:R2D2]] | ||
Latest revision as of 08:46, 10 April 2026
This command gets the PLMN (MCC and MNC), the name, the status and the access technology for all GSM operators detectable by the modem.
COMMAND
| Command | Line Arguments | Returns |
|---|---|---|
| GetGsmNetworkList | PortIndex | List of Operators’ PLMN, status, technology and name |
OUTPUT
GSM port operator selection mode and GSM operator PLMN:
"%s %s %s\n", mode, plmn, status
Where technology (access technology) are :
0= GSM2= UTRAN (3G)7= LTE12= NR5G (5G SA)13= NR5G (5G NSA)
EXAMPLE
~# GetGsmNetworkList 0
20801 CURRENT 7 Orange F
20801 AVAILABLE 2 Orange F
20801 AVAILABLE 0 Orange F
20810 AVAILABLE 7 F SFR
20815 FORBIDDEN 7 Free
20820 FORBIDDEN 2 F-Bouygues Telecom
20820 FORBIDDEN 7 F-Bouygues Telecom