STM32 的 printf() 函數串口重定向(HAL庫標準庫都適用)

1.創建工程函數

2.核心:添加新文件usar_fputc.c (名字隨便本身命名),把文件添加到項目中去 測試

  #include "stdio.h"
  #include "stm32f1xx_hal.h"ui

  extern UART_HandleTypeDef huart1;
  uint8_t ch;
  uint8_t ch_r;spa

  //重寫這個函數,重定向printf函數到串口
  /*fputc*/
  int fputc(int c, FILE * f)
  {
    ch=c;
    HAL_UART_Transmit(&huart1,&ch,1,1000);//發送串口
    return c;
  }blog

 

  //重定向scanf函數到串口 意思就是說接受串口發過來的數據
  /*fgetc*/
  int fgetc(FILE * F)
  {
    HAL_UART_Receive (&huart1,&ch_r,1,0xffff);//接收
    return ch_r;
  }get

3.修改main.c 文件it

  #include "stdio.h" /*添加頭文件 */io

  在main()函數裏添加測試代碼:printf("\n===函數Printf函數發送數據===\n");  //測試內容im

4.打開串口助手測試最終效果如圖:命名

  

相關文章
相關標籤/搜索