概要
使用USART1,实现printf。printf是标准库函数,在使用的需要包含stdio.h头文件。在prinft内部最终调用fputc库函数,因此需要重写fputc库函数,将要输出的内容输出到串口上。
实现
#include "usart.h"
#pragma import(__use_no_semihosting)
struct __FILE
{
int handle;
/* Whatever you require here. If the only file you are using is */
/* standard output using printf() for debugging, no file handling */
/* is required. */
};
/* FILE is typedef’ d in stdio.h. */
FILE __stdout;
_sys_exit(int x)
{
x = x;
}
//redefine fputc using USART1
int fputc(int ch, FILE *f)
{
//status register, [6]transmission complete
while((USART1->SR & 0x40) == 0);
USART1->DR = (u8)ch;
return ch;
}
void uart_init(u32 pclk2, u32 bound)
{
//initialize usart1
}
本文介绍如何在STM32中通过USART1实现printf功能。通过重写fputc函数,使输出重定向到串口,实现了串口数据发送。文章提供了关键代码示例。
1639

被折叠的 条评论
为什么被折叠?



