标签:int 代码 函数 初始化 nbsp err received 进入 config
.串口初始化配置时,需要打开ORE 溢出中断
USART_ITConfig(USART2, USART_IT_ORE, ENABLE);
串口接收中断函数要增加如下代码:
if (USART_GetITStatus(USART2, USART_IT_ORE) == SET)
{
USART_ClearITPendingBit(USART2,USART_IT_ORE);
USART_ReceiveData( USART2 ); //这句一定要加
debug("USART2 ORE interrupt");
}
标签:int 代码 函数 初始化 nbsp err received 进入 config
原文地址:https://www.cnblogs.com/god-of-death/p/9191670.html