STM32CubeIDE使用printf串口打印
在USART的初始化文件中添加如下代码
#include "stdio.h" /* USER CODE BEGIN 0 */ #ifdef __GNUC__ #define PUTCHAR_PROTOTYPE int __io_putchar(int ch) PUTCHAR_PROTOTYPE { //注意下面第一个参数是&husart1,因为cubemx配置了串口1自动生成的 HAL_USART_Transmit(&husart1, (uint8_t*)&ch, 1, HAL_MAX_DELAY); return ch; } #endif /* USER CODE END 0 */