今日调试了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 。