码迷,mamicode.com
首页 > 其他好文 > 详细

STM32.printf

时间:2014-10-04 23:02:47      阅读:354      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   ar   数据   sp   div   

printf("\r\n this is a usart printf demo \r\n");

bubuko.com,布布扣

Use Micro LIB 需要勾选这个库

将串口定义成 printf 函数

#include <stdio.h>
//重定向C库函数printf到USART1
int fputc(int ch, FILE *f)
{
        /* 发送一个字节数据到USART1 */
        USART_SendData(USART1, (uint8_t) ch);
        
        /*等待发送完毕  */
        while (USART_GetFlagStatus(USART1, USART_FLAG_TXE) == RESET);        
    
        return (ch);
}

///重定向C库函数scanf到USART1
int fgetc(FILE *f)
{
        /* 等待串口1输入数据 */
        while (USART_GetFlagStatus(USART1, USART_FLAG_RXNE) == RESET);

        return (int)USART_ReceiveData(USART1);
}

 

或者

#ifdef __GNUC__
  /* With GCC/RAISONANCE, small printf (option LD Linker->Libraries->Small printf
     set to ‘Yes‘) calls __io_putchar() */
  #define PUTCHAR_PROTOTYPE int __io_putchar(int ch)
#else
  #define PUTCHAR_PROTOTYPE int fputc(int ch, FILE *f)
#endif /* __GNUC__ */

 


 

STM32.printf

标签:style   blog   http   color   io   ar   数据   sp   div   

原文地址:http://www.cnblogs.com/Ph-one/p/4006331.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!