一个算是正常的中国码农!
分类:
2012-10-25 18:50:31
原文地址:让MDK支持printf(基于stm32) 作者:number007cool
int fputc(int ch, FILE *f)
{
//USART_SendData(USART1, (u8) ch);
USART1->DR = (u8) ch;
/* Loop until the end of transmission */
while(USART_GetFlagStatus(USART1, USART_FLAG_TXE) == RESET)
{
}
return ch;