stm32f103c8t6将printf函数改为用USART3输出,更改fput()函数
时间: 2023-12-18 14:03:02 浏览: 73
要将`printf`函数改为用`USART3`输出,可以通过重定向`stdio.h`中的`fputc`函数来实现。在重定向`fputc`函数之前,需要先对`USART3`进行初始化。
以下是一个示例代码,可以将`printf`输出到`USART3`,并且修改了`fputc`函数:
```c
#include "stdio.h"
#include "stm32f10x.h"
// 重定向fputc函数到USART3
int fputc(int ch, FILE *f) {
while (USART_GetFlagStatus(USART3, USART_FLAG_TXE) == RESET);
USART_SendData(USART3, (uint8_t)ch);
return ch;
}
int main(void) {
// 初始化USART3
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB | RCC_APB2Periph_AFIO | RCC_APB2Periph_USART1, ENABLE);
GPIO_InitTypeDef GPIO_InitStructure;
USART_InitTypeDef USART_InitStructure;
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
GPIO_Init(GPIOB, &GPIO_InitStructure);
USART_InitStructure.USART_BaudRate = 115200;
USART_InitStructure.USART_WordLength = USART_WordLength_8b;
USART_InitStructure.USART_StopBits = USART_StopBits_1;
USART_InitStructure.USART_Parity = USART_Parity_No;
USART_InitStructure.USART_HardwareFlowControl = USART_HardwareFlowControl_None;
USART_InitStructure.USART_Mode = USART_Mode_Tx;
USART_Init(USART3, &USART_InitStructure);
USART_Cmd(USART3, ENABLE);
// 使用printf输出到USART3
printf("Hello, USART3!\n");
while (1) {
}
}
```
在上面的代码中,我们定义了一个名为`fputc`的函数,这个函数用来将`printf`函数输出的字符发送到`USART3`上。然后,在`main`函数中,我们初始化了`USART3`。最后,我们使用`printf`函数输出到`USART3`。注意,由于我们修改了`fputc`函数,因此在使用`printf`函数时,会自动调用`fputc`函数,从而输出到`USART3`上。
阅读全文