GetGsmOperatorList: 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 | m (added Category:NETWORK using HotCat) | ||
| (5 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
| This command  | This command gets the list of GSM operator (status and operator PLMN) present in the network for the specified GSM port. Status can be UNKNOWN, AVAILABLE, CURRENT or FORBIDDEN. | ||
| '''COMMAND''' | '''COMMAND''' | ||
| Line 8: | Line 8: | ||
| !Returns | !Returns | ||
| |- | |- | ||
| | | |GetGsmOperatorList | ||
| |PortIndex   | |PortIndex   | ||
| | | |List of Operators’ PLMN and status | ||
| |} | |} | ||
| '''OUTPUT''' | '''OUTPUT''' <br>GSM port operator list (status and operator PLMN): | ||
| "%s\n", status  | "%s %s\n", plmn, status | ||
| '''EXAMPLE''' <syntaxhighlight lang="text"> | '''EXAMPLE''' <syntaxhighlight lang="text"> | ||
| ~# GetGsmOperatorList 0 | |||
| ~#  | 20810 CURRENT | ||
| 20801 AVAILABLE | |||
| </syntaxhighlight> | </syntaxhighlight> | ||
| [[Category: | [[Category:R2D2]] | ||
| [[Category: | [[Category:NETWORK]] | ||
Latest revision as of 08:52, 2 April 2025
This command gets the list of GSM operator (status and operator PLMN) present in the network for the specified GSM port. Status can be UNKNOWN, AVAILABLE, CURRENT or FORBIDDEN.
COMMAND
| Command | Line Arguments | Returns | 
|---|---|---|
| GetGsmOperatorList | PortIndex | List of Operators’ PLMN and status | 
OUTPUT 
GSM port operator list (status and operator PLMN):
"%s %s\n", plmn, status
EXAMPLE
~# GetGsmOperatorList 0
20810 CURRENT
20801 AVAILABLE