当前位置: 代码迷 >> 单片机 >> stm32中printf重定向如何理解呢
  详细解决方案

stm32中printf重定向如何理解呢

热度:502   发布时间:2016-04-28 14:41:48.0
stm32中printf重定向怎么理解呢 ?
int fputc(int ch, FILE *f)
{
USART_SendData(USART1, (uint8_t) ch);

while (USART_GetFlagStatus(USART1, USART_FLAG_TC) == RESET);

return (ch);
}

------解决思路----------------------
话说你有必要连发三帖吗
  相关解决方案