2012-04-30 19:30:32
| 分類:
stm32
| 標籤:
stm32
printf串列埠
|字型大小訂閱
今天除錯了stm32f407的adc,一切順利,然而用串列埠傳送adc結果時都是16進製制數,看著很不爽。於是打算用用牛b的「printf」函式,按照以前的做法,在main檔案中新增了「stdio.h」,寫好了「printf」函式,沏杯茶,打算邊品茶邊坐等結果,然而這一坐竟坐了半天也沒見結果
stm32串列埠通訊中使用printf傳送資料配置方法(開發環境 keil rvmdk)
標籤: stm32 串列埠通訊 printf方法 2011-06-29 23:29
在stm32串列埠通訊程式中使用printf傳送資料,非常的方便。可在剛開始使用的時候總是遇到問題,常見的是硬體訪真時無法進入main主函式,其實只要簡單的配置一下就可以了。
下面就說一下使用printf需要做哪些配置。
有兩種配置方法:
一、對工程屬性進行配置,詳細步驟如下
1、首先要在你的main 檔案中 包含「stdio.h」 (標準輸入輸出標頭檔案)。
2、在main檔案中重定義函式 如下:
// 傳送資料
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
#include
#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 。
STM32 Printf函式實現方法
在stm32串列埠通訊程式中使用printf傳送資料,非常的方便。可在剛開始使用的時候總是遇到問題,常見的是硬體訪真時無法進入main主函式,其實只要簡單的配置一下就可以了。下面就說一下使用printf需要做哪些配置。有兩種配置方法 一 對工程屬性進行配置,詳細步驟如下 1 首先要在你的main 檔...
STM32 Printf函式實現方法
今天除錯了stm32f407的adc,一切順利,然而用串列埠傳送adc結果時都是16進製制數,看著很不爽。於是打算用用牛b的 printf 函式,按照以前的做法,在main檔案中新增了 stdio.h 寫好了 printf 函式,沏杯茶,打算邊品茶邊坐等結果,然而這一坐竟坐了半天也沒見結果。stm3...
stm32 printf函式重定向
include stm32f10x.h include stdio.h void rcc configuration void 首先設定系統時鐘為8mhz void gpio configuration void void usart configuration void function name...