mirror of
https://gitee.com/beecue/fastbee.git
synced 2025-12-17 16:36:03 +08:00
41 lines
246 B
C
41 lines
246 B
C
#include "uart1_receive.h"
|
|
|
|
void BSP_UART1ReceiveInfor(void)
|
|
{
|
|
if(UART1ReadFlag&0x8000)
|
|
{
|
|
UART1ReadFlag = 0;
|
|
memset((void *)UART1ReadBuf,0,sizeof(UART1ReadBuf));
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|