From 42764e1824563c32798d7bbf592a47dd2db8dce2 Mon Sep 17 00:00:00 2001
From: yincheng.zhong <634916154@qq.com>
Date: 星期六, 05 七月 2025 22:41:04 +0800
Subject: [PATCH] 解决MK 溢出导致联网错误问题,差分数据问题,开机关闭卫星GSV功能,准备迁移到MK-UBK-通用分支

---
 keil/include/components/internet/src/AIR780EDriver.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/keil/include/components/internet/src/AIR780EDriver.c b/keil/include/components/internet/src/AIR780EDriver.c
index 209cbe1..ea10c74 100644
--- a/keil/include/components/internet/src/AIR780EDriver.c
+++ b/keil/include/components/internet/src/AIR780EDriver.c
@@ -25,12 +25,12 @@
  *******************************************************************************/
 /* 串口相关 */
 #define AIR780E_UART_TX_BUF_SIZE                              (100)                  /* 串口未使用DMA模式,不需要buff */
-#define AIR780E_UART_RX_BUF_SIZE                              (1024 * 2 + 512)
+#define AIR780E_UART_RX_BUF_SIZE                              (1024  + 512)
 #define AIR780E_UART_TX_QUEUE_MEMBER_CNT                      16                   /* 串口未使用DMA模式,不需要 */
 
 /* AT相关 */
-#define AIR780E_AT_SEND_BUF_SIZE                              ((5 * 1024) + 512)         /* 发送的单条AT指令的最大长度 */
-#define AIR780E_AT_RECV_BUF_SIZE                              ((5 * 1024) + 512)         /* 单挑AT指令 */
+#define AIR780E_AT_SEND_BUF_SIZE                              (( 0*1024) + 512)         /* 发送的单条AT指令的最大长度 */
+#define AIR780E_AT_RECV_BUF_SIZE                              (( 1024) + 512)         /* 单挑AT指令 */
 
 /*******************************************************************************
  *                             Type Definition                                 *

--
Gitblit v1.9.3