About AT Commands
Any developer who must work with a cellular modem will have to make use of what are called 'AT commands' at some point. AT commands are essentially modem instructions. Originally developed by the modem maker Hayes as means to operate their dial-up landline products, AT commands — the 'AT' stands for 'come to ATtention' — are now used by all modems, of all types.
AT commands are primarily used to configure a modem and establish its network connection. They can be used to interact with the modem's SIM, such as a KORE Super SIM . They can also be used to get modem and connection status information, and this can be very helpful in debugging applications and in confirming that a modem is operating correctly: it has connected to the right network, is using the correct cellular technology, has roaming enabled, etc. We'll look at some useful commands for tasks like these shortly.
This page covers AT commands at a high level. Which AT commands are supported, how to send them, and how to process responses may vary from modem to modem. Refer to your specific modem's AT command documentation to learn more about functionality, including some useful abstractions, is available.
How to send AT commands
AT commands are sent to the modem as plain text over a serial (UART) connection comprising two wires, one for receive (RX) and one for transmit (TX), or via USB. In the field, a cellular-enabled IoT device will manage its modem by sending it AT commands, but during application development and debugging, it's not uncommon to tap the modem's USB connection. This allows you to fire up a terminal and interact with the modem directly by issuing AT commands of your own. You do this with serial terminal software — just follow the instructions provided below for the computer operating system you're using.
Open your distribution's terminal app.
Install the command-line serial console tool Minicom using your operating system's package manager, such as
apt
,rpm
,dpkg
, or similar, e.g.,sudo apt install minicom
.Get the modem's device file with
ls /dev/ttytUSB*
. It'll be something like/dev/ttyUSBx
wherex
is 0 or above. You may see multiple devices listed. Your modem's documentation should indicate which one is the modem, but you may need to use trial and error to find it. You may also need to ensure you have access to the serial port: on most distributions this can be done by adding your user account to thedialout
user group or usingsudo
.Enter
minicom -o -D /dev/ttyUSBx
to open a connection to the module. If Minicom posts an error indicating that the device is inaccessible, you may need to try one of the other devices listed in step
How to format AT commands
The commands you send must obey the following basic syntax:
This is called a 'command line'. As you can see, it starts with AT
, followed by a command, a suffix to indicate command mode or 'type', and finally some data, though not all commands need this field to be included.
This structure is called a 'command line' and it is always terminated by a single carriage return, <CR>
. You can include multiple commands in the line, each separated by a semi-colon:
Every line, no matter how many commands it contains, only has one AT
, at the start. You'll get an error if you include AT
more than once in a single line. The commands in multi-command lines are processed sequentially. The line length is usually, but not always, limited to 80 characters. Here's an example:
This sets error reporting to level 2, sets the modem to text mode, deletes all stored SMS, selects LTE-only mode, selects Cat-M only mode, and sets the APN.
AT command line fields
The <COMMAND>
field indicates what you want the modem to do. Older, 'basic' commands have single-character names; later additions to the commands set, called 'extended' commands, are prefixed with a +
sign, such as AT+COPS
(scan for networks) and AT+CGMI
(get modem manufacturer). Some commands are prefixed with & — for example, AT&F
, which resets the modem's settings. All cellular commands are extended commands. According to the AT command specification, commands must comprise uppercase characters, but many modems allow commands to be sent in lowercase too. We'll stick with the standard.
If you're sending a sequence of AT commands as shown above, make sure you include the +
or &
after each semi-colon.
The values of the <DATA>
and <SUFFIX>
fields depend on the command type, of which there are four:
Type | Suffix | Role |
---|---|---|
Read |
| Get a modem configuration setting |
Set |
| Set a modem configuration setting |
Execute | None | Trigger a modem operation |
Test |
| Check whether a modem supports the named command — but note that |
We'll see how these types affect the use of AT commands in a moment, but first let's see how the modem responds to commands.
AT command response
When an AT command is issued, depending on the command sent, the modem may or may not return data, ie. make what's called an 'information response'. Either way, the command operation always ends with the modem returning a 'result code'.
For example, suppose we ask for the name of the modem's manufacturer using the following command:
This will generate the following response when called on a u-blox modem:
Each unit of the response — the information (top line) and the result code (bottom line) — are bracketed by Carriage Return Line Feed characters (Ascii codes 0x0D
and 0x0A
, respectively, or in string form "\r\n"
), hence the empty line before the OK
.
OK
is one return code; the other is ERROR
— you made a mistake. Perhaps the modem doesn't respond to the AT command you sent, or you mistyped it. Maybe you provided too few or too many data values or command parameters. By default, modems may not provide much in the way of explanation. Fortunately, some of them can be set to return extended error information; again, you'll need to send an AT command to apply this setting: AT+CMEE=2
.
It's important to understand that you may also receive ERROR
from a perfectly valid AT command. When this happens, it's an indication that the modem is in state that is incompatible with the command. For example, if you attempt to change a modem's Access Point Name (APN) while it is active, this will typically return ERROR
. The remedy is to deactivate the modem, make the APN change, and then reactivate it.
AT command types and testing
You can mitigate the problem of seemingly correct commands throwing errors by making use of the test command suffix (=?
), which is used to ask the modem if it supports the given command. If it doesn't, you'll receive an ERROR
return code; you know not to issue this command. If the modem does support the command, you will receive an information response indicating the command's parameters, if it has any, followed by OK
.
The example above can be used to demonstrate command testing. We can ask the modem if it supports the +CGMI
command:
and it will return OK
because it does support this command. However, because the modem's manufacturer is fixed, attempting to change it will always result in ERROR
. How might we have attempted to change its value? With a set command suffix (=
):
Note how the string data is placed within double quotes — this too is an AT command requirement.
There's one key exception to the command test rule: AT+COPS=?
. This does not report on the availability of the +COPS
command, but instead triggers a network scan and reports the results. AT+COPS?
reports the network to which the modem is currently connected.
Test mode can also be used to determine what parameters a supported command takes. For example, if you send the command +CBC
in test mode (it asks the modem what its current battery level is) you will get a result indicating the number of parameters and the range of values for each:
The parameters are separated by commas; each parameter's value range is presented in brackets in the form <LOWEST VALUE>-<HIGHEST VALUE>
.
Issue the command to a Simcom 7080G and you might see:
Again, the parameters are separated by a comma and preceded with a colon and a space. You can use these separator characters to help you extract the data values. Numeric values will have to be converted from the source string, of course, but double quote delimited values are intended to remain strings.
Here's an example of a multi-parameter command: this sets the modem's power-on welcome text:
There are no spaces in the command line; only those within strings are permitted.
We can read back the values with a read command suffix (?
):
Which commands a given module supports and what values are returned are generally manufacturer specific and the list of commands is often extensive. You will need to download the command guide for your chosen modem from its manufacturer's website.
How to respond to modem requests
Sometimes the modem will ask your application code for data. It will signal this by including the character >
in its response to a command you issued. You now send a Carriage Return, <CR>
or "\r"
followed by the requested data. Finally, you send the keyboard combination Ctrl-Z
to tell the modem to use the data you supplied, or ESC
to cancel the operation.
How do you send Ctrl-Z
? You include the character as a numeric character value: 0x1A
in hex, or 26 in decimal. Typically you'll do this with a string format command in your chosen language. For example, here's some C++:
And here's the equivalent in Python:
ESC
is sent in the same way; you just use the code 0x1B
or 27.
One example of returning responses to a modem is sending a text message. Usually you do this with the AT+CMGS
command and supply the target number. Here's how you send a Super SIM SMS Command:
The modem will respond with >
and your code needs to look for this and then send a string comprising a Carriage Return, the SMS body, and either Ctrl-Z
(to send) or ESC
to cancel.
Key AT commands
The following table lists some of the most useful AT commands you may need while working with a cellular modem and Super SIM.
Command
AT+CGMI
Example Response
u-blox``OK
DescriptionReturn the modem's manufacturer.
Command
AT+CGMM
Example Response
LARA-R211``OK
DescriptionReturn the modem's model number.
Command
AT+CGSN
Example Response
1234567890``OK
DescriptionReturn the modem's serial number.
Command
AT+CPIN?
Example Response
+CPIN: READY``OK
DescriptionConfirm the modem's SIM is ready.
Command
AT+CIMI
Example Response
<imsi>``OK
DescriptionGet the SIM's current International Mobile Subscriber Identifier (IMSI).
Command
AT+CCID
Example Response
<iccid>``OK
DescriptionGet the SIM's ICCID (Integrated Circuit Card ID).
Command
AT+CMEE=2
Example Response
OK
DescriptionEnabled extended error reporting: instead of the usual
ERROR
, you will receive+CME ERROR:
followed by an error message.
Command
AT+CSQ
Example Response
+CSQ: 4,7``OK
DescriptionGet the current signal strength in the format: ,<ERR_RATE>. is an indexed dbM value. <ERR_RATE> is an indexed percentage bit error rate. A
99
in either field indicates the value is unknown.
Command
AT+CREG?
Example Response
+CREG: 0,7``OK
DescriptionGet the current network registration status in the format: <URC_MODE>,. <URC_MODE> indicates whether network registration status notifications are enabled (
1
) or not (0
). is value indicating the network status, e.g.,0
shows the modem is not registered,5
shows the modem is registered and is roaming, and7
shows the modem is registered for SMS only.
Command
AT+COPS?
Example Response
+COPS: 0,0,"vodafone UK KORE",0``OK
DescriptionThe output fields are: operator selection mode, operator name format, operator name, and network type.
Command
AT+COPS=?
Example Response
+COPS: (2,"EE","EE","23440",7),(1,"3 UK","3 UK","23420",7)``OK
DescriptionScan and report visible networks.
Command
AT+CGDCONT?
Example Response
+CGDCONT: 1,"IP","super","0.0.0.0",0,0,0,0``OK
DescriptionGet the APN (the third response parameter).
Command
AT+CMGF=<MODE>
Example Response
OK
DescriptionSet the SMS message format. Usually a choice between a binary format and text. For some modems is an integer, for others it is a string, possibly indicating the character set to be used.
Super SIM setup AT commands
To use a Super SIM, its host modem's APN must be set to super
, and roaming must be enabled. The following AT commands will help you do so.
Other modules will require their own vendor-specific roaming setup commands — please check their documentation. We hope to extend the following sections to include other modules over time. You can also check out the Cellular Module Knowledgebase .
Set APN
Command
AT+CGDCONT=1,"IP","super"
Example Response
AT+CGDCONT=1,"IP","super"``OK
DescriptionSet the modem's APN. It's possible to set multiple APNs, for different IP types (the second parameter), but we recommend setting just one.
Enable roaming
Command Quectel BG96 only
AT+QCFG="roamservice",2
Example Response
AT+QCFG="roamservice",2``OK
Command u-blox Lara-R2xx only
AT+UDCONF=20,1
Example Response
OK
Further Reading
You can download the comprehensive AT Command Set for User Equipment from the ETSI standards agency. It lists all AT commands that are not vendor specific.
See the Cellular Module Knowledgebase for more module-specific useful AT commands.
Last updated