【修改】适配 AT 组件源码函数改动

Signed-off-by: chenyong <1521761801@qq.com>
This commit is contained in:
chenyong 2018-10-15 13:54:22 +08:00
parent 3284f063e2
commit c528d5af00
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();
/* set EC20 AT Socket options */
at_scoket_device_register(&ec20_socket_ops);
at_socket_device_register(&ec20_socket_ops);
return 0;
}

View File

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

View File

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