From 961c1174bbf1aaae5fa2f672806ed4eaf2f917be Mon Sep 17 00:00:00 2001 From: WXK <287788329@qq.com> Date: 星期三, 05 二月 2025 15:45:10 +0800 Subject: [PATCH] 串口传输协议加上一位指令类型 --- 01_SDK/modules/hal/panchip/panplat/pan1070/bsp/peripheral/inc/pan_uart.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/01_SDK/modules/hal/panchip/panplat/pan1070/bsp/peripheral/inc/pan_uart.h b/01_SDK/modules/hal/panchip/panplat/pan1070/bsp/peripheral/inc/pan_uart.h index 802f5e3..42afc14 100644 --- a/01_SDK/modules/hal/panchip/panplat/pan1070/bsp/peripheral/inc/pan_uart.h +++ b/01_SDK/modules/hal/panchip/panplat/pan1070/bsp/peripheral/inc/pan_uart.h @@ -162,7 +162,7 @@ UART_LINE_BREAK_INT = 0x10, // break interrupt UART_LINE_THRE = 0x20, // transmit holding register empty (or tx fifo full) UART_LINE_TXSR_EMPTY = 0x40, // transmitter shift register empty - UART_LINE_RECV_FIFO_EMPTY = 0x80, // receiver FIFO error + UART_LINE_RX_FIFO_ERR = 0x80, // receiver FIFO error UART_LINE_ADDR_RCVD = 0x100 // address received (9-bit mode) } UART_LineStatusDef; /**@} */ -- Gitblit v1.9.3