STM32 串列埠通訊 printf方法
STM32串列埠通訊中使用printf傳送資料配置方法(開發環境 Keil RVMDK)
在STM32串列埠通訊程式中使用printf傳送資料,非常的方便。可在剛開始使用的時候總是遇到問題,常見的是硬體訪真時無法進入main主函式,其實只要簡單的配置一下就可以了。
下面就說一下使用printf需要做哪些配置。
有兩種配置方法:
一、對工程屬性進行配置,詳細步驟如下
1、首先要在你的main 檔案中 包含“stdio.h” (標準輸入輸出標頭檔案)。
2、在main檔案中重定義<fputc>函式 如下:
// 傳送資料
int fputc(int ch, FILE *f)
{
USART_SendData(USART1, (unsigned char) ch);// USART1 可以換成 USART2 等
while (!(USART1->SR & USART_FLAG_TXE));
return (ch);
}
// 接收資料
int GetKey (void) {
while (!(USART1->SR & USART_FLAG_RXNE));
return ((int)(USART1->DR & 0x1FF));
}
這樣在使用printf時就會呼叫自定義的fputc函式,來發送字元。
3、在工程屬性的 “Target" -> "Code Generation" 選項中勾選 "Use MicroLIB"”
MicroLIB 是預設C的備份庫,關於它可以到網上查詢詳細資料。
至此完成配置,在工程中可以隨意使用printf向串列埠傳送資料了。
二、第二種方法是在工程中新增“Regtarge.c”檔案
1、在main檔案中包含 “stdio.h” 檔案
2、在工程中建立一個檔案儲存為 Regtarge.c , 然後將其新增工程中
在檔案中輸入如下內容(直接複製即可)
#include <stdio.h>
#include <rt_misc.h>
#pragma import(__use_no_semihosting_swi)
extern int SendChar(int ch); // 宣告外部函式,在main檔案中定義
extern int GetKey(void);
struct __FILE {
int handle; // Add whatever you need here
};
FILE __stdout;
FILE __stdin;
int fputc(int ch, FILE *f) {
return (SendChar(ch));
}
int fgetc(FILE *f) {
return (SendChar(GetKey()));
}
void _ttywrch(int ch) {
SendChar (ch);
}
int ferror(FILE *f) { // Your implementation of ferror
return EOF;
}
void _sys_exit(int return_code) {
label: goto label; // endless loop
}
3、在main檔案中新增定義以下兩個函式
int SendChar (int ch) {
while (!(USART1->SR & USART_FLAG_TXE)); // USART1 可換成你程式中通訊的串列埠
USART1->DR = (ch & 0x1FF);
return (ch);
}
int GetKey (void) {
while (!(USART1->SR & USART_FLAG_RXNE));
return ((int)(USART1->DR & 0x1FF));
}
至此完成配置,可以在main檔案中隨意使用 printf 。