配置GPIO USART 中断发送接收printf1234567#include <stdio.h>#include <stm32g0xx_hal.h>int fputc(int ch, FILE *f) { HAL_UART_Transmit(&huart2, (uint8_t *)&ch, 1, HAL_MAX_DELAY); return ch;}