update readme

This commit is contained in:
yichen 2019-11-12 18:16:54 +08:00
parent dbfee39a2b
commit db9acb1ab8
2 changed files with 6 additions and 3 deletions

View File

@ -2,7 +2,7 @@
## 1. 简介 ##
AT device 软件包是由 RT-Thread AT 组件针对不同 AT 设备的移植文件和示例代码组成,目前支持的 AT 设备有ESP8266、ESP32、M26、MC20、RW007、MW31、SIM800C 以及 SIM76XX 系列设备等,目前上述设备都完成对 `AT socket` 功能的移植,及设备通过 AT 命令实现标准 socket 编程接口,完成 socket 通讯的功能,具体功能介绍可参考 [《RT-Thread 编程指南》](https://www.rt-thread.org/document/site/programming-manual/at/at/)AT 命令章节 。
AT device 软件包是由 RT-Thread AT 组件针对不同 AT 设备的移植文件和示例代码组成,目前支持的 AT 设备有ESP8266、ESP32、M26、MC20、RW007、MW31、SIM800C、W60X 以及 SIM76XX 系列设备等,目前上述设备都完成对 `AT socket` 功能的移植,及设备通过 AT 命令实现标准 socket 编程接口,完成 socket 通讯的功能,具体功能介绍可参考 [《RT-Thread 编程指南》](https://www.rt-thread.org/document/site/programming-manual/at/at/)AT 命令章节 。
### 1.1. 目录结构 ###
@ -20,6 +20,7 @@ AT device 软件包是由 RT-Thread AT 组件针对不同 AT 设备的移植文
| class/m26 | M26/MC20 设备针对 AT 组件的移植目录,实现 AT Socket 功能 |
| class/ec20 | EC20 设备针对 AT 组件的移植目录,实现 AT Socket 功能 |
| class/mw31 | MW31 设备针对 AT 组件的移植目录,实现 AT Socket 功能 |
| class/w60x | W60X 设备针对 AT 组件的移植目录,实现 AT Socket 功能 |
### 1.2 许可证 ###
at_device package 遵循 LGPLv2.1 许可,详见 `LICENSE` 文件。
@ -94,6 +95,7 @@ RT-Thread online packages --->
[ ] SIMCom SIM800C --->
[ ] SIMCom SIM76XX --->
[ ] Notion MW31 --->
[ ] WinnerMicro W60X --->
Version (latest) --->
```
@ -117,6 +119,7 @@ RT-Thread online packages --->
- **SIMCom SIM800C**:开启 SIM800C 2G 模块)设备支持;
- **SIMCom SIM76XX**:开启 SIM76XX 4G 模块)设备支持;
- **Notion MW31**:开启 MW31 WIFI 模块)设备支持;
- **WinnerMicro W60X**:开启 W60X WIFI 模块)设备支持;
- **Version** 下载软件包版本;
上面配置选项以 2G 模块和 WIFI 模块选项为例,介绍了`V2.X.X` 版本 AT device 软件包配置方式,如下几点值得注意:

View File

@ -820,7 +820,7 @@ static int w60x_deinit(struct at_device *device)
return w60x_netdev_set_down(device->netdev);
}
/* reset eap8266 device and initialize device network again */
/* reset w60x device and initialize device network again */
static int w60x_reset(struct at_device *device)
{
int result = RT_EOK;
@ -842,7 +842,7 @@ static int w60x_reset(struct at_device *device)
return result;
}
/* change eap8266 wifi ssid and password information */
/* change w60x wifi ssid and password information */
static int w60x_wifi_info_set(struct at_device *device, struct at_device_ssid_pwd *info)
{
int result = RT_EOK;