STM32的printf函數(shù)實(shí)現(xiàn)方法
今天調(diào)試了stm32f407的ADC,一切順利,然而用串口發(fā)送ADC 結(jié)果時(shí)都是16進(jìn)制數(shù),看
著很不爽。于是打算用用牛B 的“printf”函數(shù),按照以前的做法,在main 文件中添加了
“stdio.h”,寫好了“printf”函數(shù),沏杯茶,打算邊品茶邊坐等結(jié)果,然而這一坐竟坐了半天也
沒見結(jié)果。一調(diào)試發(fā)現(xiàn)程序停在了printf 函數(shù)處,百思不得其解,百度之,得答案,不敢獨(dú)
享,分享如下:STM32串口通信中使用printf 發(fā)送數(shù)據(jù)配置方法(開發(fā)環(huán)境Keil RVMDK)在STM32串口通信程序中使用printf 發(fā)送數(shù)據(jù),非常的方便??稍趧傞_始使用的時(shí)候總是遇到問題,常見的是硬件訪真時(shí)無法進(jìn)入main 主函數(shù),其實(shí)只要簡(jiǎn)單的配置一下就可以了。下面就說一下使用printf 需要做哪些配置。
有兩種配置方法:
一、對(duì)工程屬性進(jìn)行配置,詳細(xì)步驟如下
1、首先要在你的main 文件中包含“stdio.h” (標(biāo)準(zhǔn)輸入輸出頭文件)。
2、在main 文件中重定義函數(shù)如下:
// 發(fā)送數(shù)據(jù)
int fputc(int ch, FILE *f)
{
USART_SendData(USART1, (unsigned char) ch);// USART1 可以換成USART2 等
while (!(USART1->SR & USART_FLAG_TXE));
return (ch);
}
// 接收數(shù)據(jù)
intGetKey (void) {
while (!(USART1->SR & USART_FLAG_RXNE));
return ((int)(USART1->DR & 0x1FF));
}
這樣在使用printf 時(shí)就會(huì)調(diào)用自定義的fputc 函數(shù),來發(fā)送字符。
3、在工程屬性的“Target" -> "Code Generation" 選項(xiàng)中勾選"Use MicroLIB"”
MicroLIB 是缺省C 的備份庫,關(guān)于它可以到網(wǎng)上查找詳細(xì)資料。
至此完成配置,在工程中可以隨意使用printf 向串口發(fā)送數(shù)據(jù)了。
二、第二種方法是在工程中添加“Regtarge.c”文件
1、在main 文件中包含“stdio.h” 文件
2、在工程中創(chuàng)建一個(gè)文件保存為Regtarge.c , 然后將其添加工程中
在文件中輸入如下內(nèi)容(直接復(fù)制即可)
#include
#include
#pragma import(__use_no_semihosting_swi)
extern int SendChar(int ch); // 聲明外部函數(shù),在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 文件中添加定義以下兩個(gè)函數(shù)
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 。