初中生
最后登录1970-1-1
在线时间 小时
注册时间2016-9-26
|
楼主 |
发表于 2016-10-16 21:33:16
|
显示全部楼层
/*************发送一个16位数*************************/
void Usart_SendHalfWorld(USART_TypeDef *pUSARTx,uint16_t ch)
{
uint8_t temp_h,temp_l;
temp_h = (ch&0xff00) >> 8;
temp_l = (ch&0xff);
USART_SendData(pUSARTx,temp_h);
while( USART_GetFlagStatus(pUSARTx, USART_FLAG_TXE) == RESET );
USART_SendData(pUSARTx,temp_l);
while( USART_GetFlagStatus(pUSARTx, USART_FLAG_TXE) == RESET );
} |
|