File tree Expand file tree Collapse file tree 3 files changed +1179
-1
lines changed
Expand file tree Collapse file tree 3 files changed +1179
-1
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ AT device 软件包是由 RT-Thread AT 组件针对不同 AT 设备的移植文
1111| at_socket_esp8266.c | ESP8266 模块针对 AT 组件的移植文件,实现 AT socket |
1212| at_socket_rw007.c | RW007 模块针对 AT 组件的移植文件,实现 AT socket |
1313| at_socket_sim800c.c | SIM800C 模块针对 AT 组件的移植文件,实现 AT socket |
14+ | at_socket_sim76xx.c | SIM76XX 模块针对 AT 组件的移植文件,实现 AT socket |
1415| at_socket_m26.c | M26/MC20 模块针对 AT 组件的移植文件,实现 AT socket |
1516| at_socket_ec20.c | EC20 模块针对 AT 组件的移植文件,实现 AT socket |
1617| at_client_sample.c | ESP8266 模块 AT Client 功能示例文件 |
@@ -59,4 +60,4 @@ AT device 软件包是对 AT 组件库和 AT socket 功能的移植,需开启
5960## 5. 联系方式
6061
6162* 维护:RT-Thread 开发团队及社区开发者
62- * 主页:https://github.com/RT-Thread-packages/at_device
63+ * 主页:https://github.com/RT-Thread-packages/at_device
Original file line number Diff line number Diff line change @@ -19,6 +19,9 @@ if GetDepend(['AT_DEVICE_RW007']):
1919if GetDepend (['AT_DEVICE_SIM800C' ]):
2020 src += Glob ('at_socket_sim800c.c' )
2121
22+ if GetDepend (['AT_DEVICE_SIM76XX' ]):
23+ src += Glob ('at_socket_sim76xx.c' )
24+
2225if GetDepend (['AT_DEVICE_NOT_SELECTED' ]):
2326 src = Glob ('*.c' )
2427
You can’t perform that action at this time.
0 commit comments