在参考官方USART范例写发送代码时,字符串首字符莫名奇妙丢失
/* e.g. write a character to the USART */
USART_SendData(EVAL_COM1, (uint8_t) ch);
/* Loop until the end of transmission */
while (USART_GetFlagStatus(EVAL_COM1, USART_FLAG_TC) == RESET)
{}
翻看数据手册,发现复位后TXE、TC标志位默认为1,因此导致第一次的标志位检测失效,首字符还未送出就被覆盖。
原因找到后,解决办法就相当简单了,只要发送第一个字符前将标志位清零就行了。
两种方法:
1. 将对TC的检测改为对TXE的检查
while (USART_GetFlagStatus(EVAL_COM1, USART_FLAG_TXE) == RESET)
2. 在向USART_DR寄存器写入数据前,读一次USART_SR寄存器
/* Read USART_SR register */ USARTx -> SR; /* e.g. write a character to the USART */ USART_SendData(EVAL_COM1, (uint8_t) ch); /* Loop until the end of transmission */ while (USART_GetFlagStatus(EVAL_COM1, USART_FLAG_TC) == RESET) {}