From a4015c1c6b7fa2d4249ee3be9016440859984e21 Mon Sep 17 00:00:00 2001 From: wu58430 Date: Tue, 5 Dec 2023 09:00:42 +0800 Subject: [PATCH] =?UTF-8?q?=E5=86=99=E9=A2=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/uart.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/uart.c b/app/uart.c index 64b4991..63e409b 100644 --- a/app/uart.c +++ b/app/uart.c @@ -514,11 +514,11 @@ bool UART_IsCommandAvailable(void) return (CRC_Calculate(UART_Command.Buffer, Size) != CRC) ? false : true; } -void UART_HandleCommand(void) +volatile void UART_HandleCommand(void) { - volatile uint16_t CMD_ID=UART_Command.Header.ID; - // UART_Send((uint8_t *)&UART_Command.Header.ID,2); - switch (CMD_ID) +// volatile uint16_t CMD_ID= + UART_Send((uint8_t *)&UART_Command.Header.ID,2); + switch (UART_Command.Header.ID) { case 0x0514: CMD_0514(UART_Command.Buffer);