# Basic AT commands

Source: [https://docs.qualcomm.com/doc/80-Y8730-10/topic/basic_at_commands.html](https://docs.qualcomm.com/doc/80-Y8730-10/topic/basic_at_commands.html)

Table : Basic AT command list

| Command | Description |
| --- | --- |
| [AT+CMD](https://docs.qualcomm.com/doc/80-Y8730-10/topic/basic_at_commands.html#at_cmd) | Show valid commands |
| [AT+GMR](https://docs.qualcomm.com/doc/80-Y8730-10/topic/basic_at_commands.html#Toc185621647) | Show software version and build time |
| [AT+INFO](https://docs.qualcomm.com/doc/80-Y8730-10/topic/basic_at_commands.html#Toc185621648) | Show system info such as temperature, heap status |
| [AT+RST](https://docs.qualcomm.com/doc/80-Y8730-10/topic/basic_at_commands.html#Toc185621649) | Reset system |
| [AT+WRTMEM](https://docs.qualcomm.com/doc/80-Y8730-10/topic/basic_at_commands.html#Toc185621650) | Write values to memory |
| [AT+RDMEM](https://docs.qualcomm.com/doc/80-Y8730-10/topic/basic_at_commands.html#Toc185621651) | Read values from memory |
| [AT+DSLEEP](https://docs.qualcomm.com/doc/80-Y8730-10/topic/basic_at_commands.html#Toc185621652) | Put system to sleep |
| [AT+TIME](https://docs.qualcomm.com/doc/80-Y8730-10/topic/basic_at_commands.html#Toc185621653) | Set/get RTC time |
| [AT+SYSCFG](https://docs.qualcomm.com/doc/80-Y8730-10/topic/basic_at_commands.html#at_syscfg) | Get the system configuration (Wi-Fi SSID and password) |

## AT+CMD

Source: [https://docs.qualcomm.com/doc/80-Y8730-10/topic/basic_at_commands.html](https://docs.qualcomm.com/doc/80-Y8730-10/topic/basic_at_commands.html)

This command shows all valid commands.

### Operation type

Query

### Syntax

| Command | Response |
| --- | --- |
| AT+CMD? | +CMD:&lt;index&gt;,&lt;command&gt;,&lt;if\_query&gt;,&lt;if\_exec&gt;,&lt;if\_set&gt; |

### Defined values

- `<index>`: AT command sequence number
- `<command>`: AT command name
- `<if_query>`: Query type. 0: Not supported; 1: Supported
- `<if_exec>`: Execution type. 0: Not supported; 1: Supported
- `<if_set>`: Set type. 0: Not supported; 1: Supported

## AT+GMR

Source: [https://docs.qualcomm.com/doc/80-Y8730-10/topic/basic_at_commands.html](https://docs.qualcomm.com/doc/80-Y8730-10/topic/basic_at_commands.html)

This command shows software version and build time.

### Operation type

Query

### Syntax

| Command | Response |
| --- | --- |
| AT+GMR? | +GMR:&lt;qapi\_ver&gt;,&lt;crm\_ver&gt;,&lt;wifi\_fw\_ver&gt;,&lt;wifi\_fw\_var\_name&gt;,&lt;board\_name&gt;,&lt;otp\_version&gt;,&lt;pbl\_version&gt;,&lt;kdf\_lock&gt;,&lt;CUID\_1&gt;,&lt;CUID\_0&gt;,&lt;date\_time&gt;<br><br><br>                <br>OK |

### Defined values

- `<qapi_ver>`: QAPI version number
- `<crm_ver>`: CRM version number
- `<wifi_fw_ver>`: Wi-Fi FW version number
- `<wifi_fw_var_ver>`: Wi-Fi FW variant version number
- `<board_name>`: Board name
- `<otp_version>`: OTP version number
- `<pbl_version>`: PBL version number
- `<kdf_lock>`: KDF lock number
- `<CUID_1>`: CUID 1
- `<CUID_0>`: CUID 0
- `<date_time>`: Build date and time

## AT+INFO

Source: [https://docs.qualcomm.com/doc/80-Y8730-10/topic/basic_at_commands.html](https://docs.qualcomm.com/doc/80-Y8730-10/topic/basic_at_commands.html)

This command shows system info such as temperature and heap status.

### Operation type

Execution

### Syntax

| Command | Response |
| --- | --- |
| AT+INFO | +INFO:&lt;temperature&gt;,&lt;vbat&gt;,&lt;heap\_total&gt;,&lt;heap\_used&gt;,&lt;heap\_free&gt;,&lt;heap\_min\_free&gt;<br><br><br>                <br>OK |

### Defined values

- `<temperature>`: Temperature in Celsius
- `<vbat>`: Battery voltage (mV)
- `<heap_total>`: Total memory
- `<heap_used>`: Used memory
- `<heap_free>`: Free memory
- `<heap_min_free>`: Minimum free memory

## AT+RST

Source: [https://docs.qualcomm.com/doc/80-Y8730-10/topic/basic_at_commands.html](https://docs.qualcomm.com/doc/80-Y8730-10/topic/basic_at_commands.html)

This command resets the system. The system will be reset after `OK` is sent.

Note: If the input string contains multiple commands, the commands placed after `+RST` aren't executed.

### Operation type

Execution

### Syntax

| Command | Response |
| --- | --- |
| AT+RST | OK |

## AT+WRTMEM

Source: [https://docs.qualcomm.com/doc/80-Y8730-10/topic/basic_at_commands.html](https://docs.qualcomm.com/doc/80-Y8730-10/topic/basic_at_commands.html)

This command supports execution and set types:

- Execution: Show command usage
- Set: Set the specified value to the memory

### Operation type

Set/Execution

### Syntax

| Command | Response |
| --- | --- |
| AT+WRTMEM | +WRTMEM: &lt;addr&gt;,&lt;size:1|2|4&gt;,&lt;value&gt;<br><br><br>                <br>mem: &lt;addr\_example&gt; for test<br><br><br>                <br>OK |
| AT+WRTMEM=&lt;addr&gt;,&lt;size:1|2|4&gt;,&lt;value&gt; | +WRTMEM:&lt;addr&gt;,&lt;size&gt;,&lt;value&gt;<br><br><br>                <br>OK |

### Defined values

- `<addr>`: Memory address to be written
- `<size>`: Data size
- `<value>`: Value to be written

## AT+RDMEM

Source: [https://docs.qualcomm.com/doc/80-Y8730-10/topic/basic_at_commands.html](https://docs.qualcomm.com/doc/80-Y8730-10/topic/basic_at_commands.html)

This command supports execution and set types:

- Execution: Show command usage
- Set: Reading the stored value from the memory

### Operation type

Set/Execution

### Syntax

| Command | Response |
| --- | --- |
| AT+RDMEM | +RDMEM: &lt;addr&gt;,&lt;size:1|2|4&gt;<br><br><br>                <br>mem: &lt;addr\_example&gt; for test<br><br><br>                <br>OK |
| AT+RDMEM=&lt;addr&gt;,&lt;size:1|2|4&gt; | +RDMEM:&lt;addr&gt;,&lt;size&gt;,&lt;data\_hex&gt;,&lt;data\_dec&gt;<br><br><br>                <br>OK |

### Defined values

- `<addr>`: Memory address to read
- `<size>`: Data size
- `<data_hex>`: Data in HEX
- `<data_dec>`: Data in DEC

## AT+DSLEEP

Source: [https://docs.qualcomm.com/doc/80-Y8730-10/topic/basic_at_commands.html](https://docs.qualcomm.com/doc/80-Y8730-10/topic/basic_at_commands.html)

This command puts the system to sleep. Before system sleep, a `lp_presleep` event is sent to the host. If the system fails to sleep, a `lp_sleepfail` event is sent to the host.

### Operation type

Set/Execution

### Syntax

| Command | Response |
| --- | --- |
| AT+DSLEEP | +DSLEEP=&lt;1:AON timer wkup|2:Ext wkup&gt;,&lt;sleep duration in us(min 16000)&gt;<br><br><br>                <br>OK |
| AT+DSLEEP=&lt;1:AON timer wkup|2:Ext wkup&gt;,&lt;sleep duration in us(min 16000)&gt; | +EVT:lp\_presleep<br><br><br>                <br>+EVT:lp\_sleepfail |

## AT+TIME

Source: [https://docs.qualcomm.com/doc/80-Y8730-10/topic/basic_at_commands.html](https://docs.qualcomm.com/doc/80-Y8730-10/topic/basic_at_commands.html)

This command gets or sets the RTC time. This command also displays the time obtained from the NTP server.

### Operation type

Query/Set/Execution

### Syntax

| Command | Response |
| --- | --- |
| AT+TIME | AT+TIME: get usage of command<br><br><br>                <br>AT+TIME?: get RTC time<br><br><br>                <br>AT+TIME=&lt;year[1980-2100]&gt;,&lt;month[1-12]&gt;,&lt;day[1-31]&gt;,&lt;hour[0-23]&gt;,&lt;minute[0-59]&gt;,&lt;second[0-59]&gt;,&lt;day\_Of\_Week[0-6]&gt;: set RTC time<br><br><br>                <br>OK |
| AT+TIME? | +TIME:&lt;year&gt;,&lt;month&gt;,&lt;day&gt;,&lt;hour&gt;,&lt;minute&gt;,&lt;second&gt;,&lt;day\_Of\_Week&gt;,&lt;zone&gt;<br><br><br>                <br>OK |
| AT+TIME=&lt;year [1980-2100]&gt;,&lt;month[1-12]&gt;,&lt;day[1-31]&gt;,&lt;hour[0-23]&gt;, &lt;minute[0-59]&gt;,&lt;second[0-59]&gt;,&lt;day\_Of\_Week[0-6]&gt; | OK |

## AT+SYSCFG

Source: [https://docs.qualcomm.com/doc/80-Y8730-10/topic/basic_at_commands.html](https://docs.qualcomm.com/doc/80-Y8730-10/topic/basic_at_commands.html)

This command gets the system configuration (only supports Wi-Fi SSID and password). The `EVT:SYSCFG` response is sent out when the SSID or password is changed using the web server.

### Operation type

Execution

### Syntax

| Command | Response |
| --- | --- |
| AT+SYSCFG | +SYSCFG:&lt;module&gt;:&lt;parameter1&gt;:&lt;parameter2&gt;<br><br><br>                <br>OK |
| N/A | +EVT:SYSCFG:&lt;module&gt;:&lt;parameter1&gt;,&lt;parameter2&gt; |

### Defined values

- `<module>`: Wi-Fi module
- `<parameter1>`: SSID
- `<parameter2>`: Password

Last Published: Jun 03, 2026

[Previous Topic
Introduction](https://docs.qualcomm.com/bundle/publicresource/80-Y8730-10/topics/qcc730_at_command_introduction.md) [Next Topic
WLAN AT commands](https://docs.qualcomm.com/bundle/publicresource/80-Y8730-10/topics/wlan_at_commands.md)