From 4c16cf5693d5df801fe4b54c52d945db2aa55b0e Mon Sep 17 00:00:00 2001 From: WXK <287788329@qq.com> Date: 星期五, 21 三月 2025 10:00:48 +0800 Subject: [PATCH] 修改4g打印乱码的错误问题 --- keil/include/components/internet/src/Socket.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/keil/include/components/internet/src/Socket.c b/keil/include/components/internet/src/Socket.c index db6ee34..abcb6b8 100644 --- a/keil/include/components/internet/src/Socket.c +++ b/keil/include/components/internet/src/Socket.c @@ -19,7 +19,7 @@ *******************************************************************************/ /* SOICKET相关 */ #define SOCKET_SEND_QUEUE_BUF_SIZE (512) -#define SOCKET_RECV_QUEUE_BUF_SIZE (512) +#define SOCKET_RECV_QUEUE_BUF_SIZE (2000) #define SOCKET_SEND_QUEUE_MEMBER_CNT 16 #define SOCKET_RECV_QUEUE_MEMBER_CNT 16 @@ -396,7 +396,7 @@ SOCKET_RECV_QUEUE_BUF_SIZE, SOCKET_RECV_QUEUE_MEMBER_CNT); } #endif - + /* 通知上层 */ if(pstSocketData->m_fnEventProc != HIDO_NULL) { -- Gitblit v1.9.3