From 583eb19f5f44cad20f0ae71331f7938b1d0b1736 Mon Sep 17 00:00:00 2001 From: Lizongdi <1210855344@qq.com> Date: Wed, 1 Jul 2026 09:47:14 +0800 Subject: [PATCH] =?UTF-8?q?=E5=9C=A8MPU=E4=B8=AD=E5=B7=B2=E7=BB=8F?= =?UTF-8?q?=E9=85=8D=E7=BD=AE=E4=BA=86=E4=B8=8D=E7=BC=93=E5=AD=98=EF=BC=8C?= =?UTF-8?q?=E8=BF=99=E9=87=8C=E5=8F=AF=E4=BB=A5=E4=B8=8D=E8=B0=83=E7=94=A8?= =?UTF-8?q?=E8=BF=99=E5=8F=A5=E4=BA=86=EF=BC=8C=E6=8F=90=E5=8D=87=E6=80=A7?= =?UTF-8?q?=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bspMCU/My_print.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bspMCU/My_print.c b/bspMCU/My_print.c index 3e73549..bf830b4 100644 --- a/bspMCU/My_print.c +++ b/bspMCU/My_print.c @@ -40,7 +40,7 @@ int USART_Send(char *_pBuffer, uint32_t _iSize) // int iRet = HAL_UART_Transmit(ptUartUserData->m_uart, (uint8_t *)_pBuffer, _iSize, 100); // HAL_GPIO_WritePin(RS485_2_DIR_GPIO_Port, RS485_2_DIR_Pin,GPIO_PIN_RESET); RD_MEMCPY(uart_tx_buffer, _pBuffer, _iSize); - SCB_CleanDCache_by_Addr((uint32_t*)uart_tx_buffer, _iSize); + //SCB_CleanDCache_by_Addr((uint32_t*)uart_tx_buffer, _iSize); int iRet = HAL_UART_Transmit_DMA(ptUartUserData->m_uart, (uint8_t *)uart_tx_buffer, _iSize); return iRet;