From c528d5af00df71d02247c429bce78f941aca8dc6 Mon Sep 17 00:00:00 2001 From: chenyong <1521761801@qq.com> Date: Mon, 15 Oct 2018 13:54:22 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E4=BF=AE=E6=94=B9=E3=80=91=E9=80=82?= =?UTF-8?q?=E9=85=8D=20AT=20=E7=BB=84=E4=BB=B6=E6=BA=90=E7=A0=81=E5=87=BD?= =?UTF-8?q?=E6=95=B0=E6=94=B9=E5=8A=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: chenyong <1521761801@qq.com> --- at_socket_ec20.c | 2 +- at_socket_esp8266.c | 2 +- at_socket_m26.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/at_socket_ec20.c b/at_socket_ec20.c index 3b4a711..51f66d5 100644 --- a/at_socket_ec20.c +++ b/at_socket_ec20.c @@ -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; } diff --git a/at_socket_esp8266.c b/at_socket_esp8266.c index 78354ff..008b647 100644 --- a/at_socket_esp8266.c +++ b/at_socket_esp8266.c @@ -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; } diff --git a/at_socket_m26.c b/at_socket_m26.c index 9e84dfe..2ae84ea 100644 --- a/at_socket_m26.c +++ b/at_socket_m26.c @@ -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; }