返回> 网站首页
使用printf发送字符串到串口
yoours2021-07-13 22:15:15
【STM32】
简介一边听听音乐,一边写写文章。
一:
1.添加包含printf()函数的头文件:#include "stdio.h"
2.重写 stdio.h 头文件中的 int fputc(int ch, FILE *f) 函数
int fputc(int ch, FILE *f)
{
//等待先前数据传输到移位寄存器
while( !(USART1->SR & (1 << 7)) );
//发送字符
USART_SendData(USART1, (uint8_t) ch);
return ch;
}
注意:使用while循环先等待先前的字符数据传输到移位寄存器,避免造成字符串首字符发送丢失的问题。
3.将该函数"int fputc(int ch, FILE *f)"放在main()函数能够调用到的文件中,KEIL->Options for Target'xxx'->Target->Code Generation,勾选Use MicroLIB
二:
//支持printf函数,而不需要选择use MicroLIB
#if 1
#pragma import(__use_no_semihosting)
//标准库需要的支持函数
struct __FILE
{
int handle;
};
FILE __stdout;
//定义_sys_exit()以避免使用半主机模式
_sys_exit(int x)
{
x = x;
}
//重定义fputc函数
int fputc(int ch, FILE *f)
{
while( !(USART1->SR & (1 << 7)) );
USART_SendData(USART1,(uint8_t)ch);
return ch;
}
#endif