From e41ccffbe9e4a9d59df51da01970e7ffc3848e95 Mon Sep 17 00:00:00 2001
From: WXK <287788329@qq.com>
Date: 星期二, 06 五月 2025 16:53:46 +0800
Subject: [PATCH] 最新ota  加入ota语音

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

diff --git a/keil/include/components/internet/src/AIR780EDriver.c b/keil/include/components/internet/src/AIR780EDriver.c
index e12f4bf..a9c7df5 100644
--- a/keil/include/components/internet/src/AIR780EDriver.c
+++ b/keil/include/components/internet/src/AIR780EDriver.c
@@ -21,7 +21,7 @@
 #include "HIDO_Log.h"
 #include "DBG.h"
 /*******************************************************************************
- *                                  Macro                                      *
+ *                                   Macro                                      *
  *******************************************************************************/
 /* 串口相关 */
 #define AIR780E_UART_TX_BUF_SIZE                              (100)                  /* 串口未使用DMA模式,不需要buff */
@@ -29,8 +29,8 @@
 #define AIR780E_UART_TX_QUEUE_MEMBER_CNT                      16                   /* 串口未使用DMA模式,不需要 */
 
 /* AT相关 */
-#define AIR780E_AT_SEND_BUF_SIZE                              (1024 + 512)         /* 发送的单条AT指令的最大长度 */
-#define AIR780E_AT_RECV_BUF_SIZE                              (1024 + 512)         /* 单挑AT指令 */
+#define AIR780E_AT_SEND_BUF_SIZE                              ((5 * 1024) + 512)         /* 发送的单条AT指令的最大长度 */
+#define AIR780E_AT_RECV_BUF_SIZE                              ((5 * 1024) + 512)         /* 单挑AT指令 */
 
 /*******************************************************************************
  *                             Type Definition                                 *
@@ -595,7 +595,7 @@
     stUartInit.m_pu8TxBuf = l_au8AIR780EUartTxBuf;
     stUartInit.m_u32TxBufSize = AIR780E_UART_TX_BUF_SIZE;
     stUartInit.m_u32TxQueueMemberCnt = AIR780E_UART_TX_QUEUE_MEMBER_CNT;
-    stUartInit.m_u32BaudRate = 115200;
+    stUartInit.m_u32BaudRate = 9600;
     if(Uart_Init(UART_ID_4G, &stUartInit) != HIDO_OK)
     {
         return HIDO_ERR;

--
Gitblit v1.9.3