摘要: HAL库版本: 使用这个版本库的时候,加入了如下代码,实现串口重定向: 1 int fputc(int ch,FILE *f) 2 { 3 HAL_UART_Transmit(&huart1, (uint8_t*)&ch, 1, 1000); 4 return ch; 5 } 6 7 8 /* 串口 阅读全文
posted @ 2023-08-31 09:53 njit-sam 阅读(236) 评论(0) 推荐(0) 编辑