HT6025芯片串口打印printf功能配置

来源:互联网 发布:运用大数据的案例分析 编辑:程序博客网 时间:2024/05/22 13:34

在串口通信程序中使用printf发送数据来调试程序,非常方便。
在使用printf做的一些配置方法:
目前有两种方法:

一:第一种方法对工程属性进行配置,详细步骤如下
1:首先要在你的main 文件中 包含“stdio.h” (标准输入输出头文件)。
2、在main文件中重定义函数 如下:

int fputc(int ch, FILE *f){    //Uart_1_Send(1, (uint8_t*) &ch);    //HT_UART_SendData(HT_UART2,(uint8_t)ch);  while(Uart_3_Send(1,(uint8_t*)&ch));    return ch;}

这样在使用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 ferrorreturn 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 。

1 0
原创粉丝点击