SendAtCommand: Difference between revisions

From Opale Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
(9 intermediate revisions by the same user not shown)
Line 8: Line 8:
|-
|-
|SendAtCommand
|SendAtCommand
|Port index, 'ATCommand' (*)
|Port index ATCommand (*)
|Issue an AT Command to the specified module.
|Issue an AT Command to the specified module.
|}
|}


(*) Note that the ATCommand must be entered with quotes it the AT Command itself includes quotes.
(*) Note that the ATCommand must be entered with quotes if the AT Command itself includes double quotes or spaces. See below.


'''OUTPUT:'''
'''OUTPUT:'''


Command status for set command:<br>
Response from the modem to the AT command.
"%s\n", command_status (OK | ERROR)


Or actual auto registration mode for get command:<br>
'''EXAMPLE:'''<syntaxhighlight lang="text">
"%s\n", mode (ENABLED | DISABLED)
~# SendAtCommand 0 "ATI4"
ATI4
Quectel
RM520N-GL
Revision: RM520NGLAAR03A05M4G


'''EXAMPLE:'''
~# GsmRegistrationMode 0 DISABLED<br>
OK
OK
</syntaxhighlight>'''OR'''<syntaxhighlight lang="text">
~# SendAtCommand 0 'AT+QCALLCFG="voice_disable"'
+QCALLCFG: "voice_disable",1
OK
</syntaxhighlight>


~# GsmRegistrationMode 0<br>
[[Category:GENERAL]]
DISABLED
[[Category:R2D2]]
 
~# GetGsmPortStatus 0<br>
NOT_REGISTERED
 
~# SelectGsmOperator 0 MANUAL 22001<br>
OK (8287)
 
~# GetGsmPortStatus 0<br>
REGISTERED (4)

Latest revision as of 10:49, 2 February 2026

This places an AT Command to the specified modem port.

COMMAND:

Command Input Arguments Returns
SendAtCommand Port index ATCommand (*) Issue an AT Command to the specified module.

(*) Note that the ATCommand must be entered with quotes if the AT Command itself includes double quotes or spaces. See below.

OUTPUT:

Response from the modem to the AT command.

EXAMPLE:

~# SendAtCommand 0 "ATI4"
ATI4
Quectel
RM520N-GL
Revision: RM520NGLAAR03A05M4G

OK

OR

~# SendAtCommand 0 'AT+QCALLCFG="voice_disable"'
+QCALLCFG: "voice_disable",1
OK