Merge pull request #36 from thomasonegd/master

add sim76xx device support
This commit is contained in:
朱天龙 (Armink) 2019-03-08 17:39:02 +08:00 committed by GitHub
commit d4afe74e87
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 1179 additions and 1 deletions

View File

@ -11,6 +11,7 @@ AT device 软件包是由 RT-Thread AT 组件针对不同 AT 设备的移植文
| at_socket_esp8266.c | ESP8266 模块针对 AT 组件的移植文件,实现 AT socket |
| at_socket_rw007.c | RW007 模块针对 AT 组件的移植文件,实现 AT socket |
| at_socket_sim800c.c | SIM800C 模块针对 AT 组件的移植文件,实现 AT socket |
| at_socket_sim76xx.c | SIM76XX 模块针对 AT 组件的移植文件,实现 AT socket |
| at_socket_m26.c | M26/MC20 模块针对 AT 组件的移植文件,实现 AT socket |
| at_socket_ec20.c | EC20 模块针对 AT 组件的移植文件,实现 AT socket |
| at_client_sample.c | ESP8266 模块 AT Client 功能示例文件 |

View File

@ -19,6 +19,9 @@ if GetDepend(['AT_DEVICE_RW007']):
if GetDepend(['AT_DEVICE_SIM800C']):
src += Glob('at_socket_sim800c.c')
if GetDepend(['AT_DEVICE_SIM76XX']):
src += Glob('at_socket_sim76xx.c')
if GetDepend(['AT_DEVICE_NOT_SELECTED']):
src = Glob('*.c')

1174
at_socket_sim76xx.c Executable file

File diff suppressed because it is too large Load Diff