原创 IAR printf重定向到usart设置

2012-3-18 14:32 5361 13 13 分类: MCU/ 嵌入式

General Options->Library Configuration的Library要选择Full

不要忘了加上stdio.h头文件

#define PUTCHAR_PROTOTYPE int fputc(int ch, FILE *f)

/**
* @brief
* @note
* @param
* @retval
*/
PUTCHAR_PROTOTYPE
{
/* Place your implementation of fputc here */
/* e.g. write a character to the USART */
USART_SendData(USART1, (u8) ch);

/* Loop until the end of transmission */
while(USART_GetFlagStatus(USART1, USART_FLAG_TC) == RESET)
{
}

return ch;
} 

PARTNER CONTENT

文章评论0条评论)

登录后参与讨论
EE直播间
更多
我要评论
0
13
关闭 站长推荐上一条 /3 下一条