Merge pull request #28 from Lawlieta/master

【修改】适配 AT 组件源码函数改动
This commit is contained in:
朱天龙 (Armink) 2018-10-16 10:21:39 +08:00 committed by GitHub
commit cb07755562
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -1417,7 +1417,7 @@ static int at_socket_device_init(void)
ec20_net_init(); ec20_net_init();
/* set EC20 AT Socket options */ /* set EC20 AT Socket options */
at_scoket_device_register(&ec20_socket_ops); at_socket_device_register(&ec20_socket_ops);
return 0; return 0;
} }

View File

@ -711,7 +711,7 @@ static int at_socket_device_init(void)
esp8266_net_init(); esp8266_net_init();
/* set esp8266 AT Socket options */ /* set esp8266 AT Socket options */
at_scoket_device_register(&esp8266_socket_ops); at_socket_device_register(&esp8266_socket_ops);
return RT_EOK; return RT_EOK;
} }

View File

@ -925,7 +925,7 @@ static int at_socket_device_init(void)
m26_net_init(); m26_net_init();
/* set m26 AT Socket options */ /* set m26 AT Socket options */
at_scoket_device_register(&m26_socket_ops); at_socket_device_register(&m26_socket_ops);
return RT_EOK; return RT_EOK;
} }