如何在單片機(jī)上使用printf函數(shù)
由于不同的編譯器studio函數(shù)不一樣,所以使用的方法也不一樣,這需要大家去看編譯器的help,這里我以STM32、LPC24和AVR整理了幾個(gè)串口打印程序,供需要的朋友參考。
本文引用地址:http://m.butianyuan.cn/article/201611/321830.htm簡(jiǎn)介:
1、在KEIL下使用printf函數(shù),以STM32為例
在uart.c中添加如下代碼
View Code
int fputc(int ch, FILE *f){ USART_SendData(USART1, (uint8_t) ch); while (USART_GetFlagStatus(USART1, USART_FLAG_TC) == RESET) {} return ch;}int fgetc(FILE *f){ while (USART_GetFlagStatus(USART1, USART_FLAG_RXNE) == RESET) {} return (int)USART_ReceiveData(USART1);} 這樣,只要在需要用printf的文件里#include就可以了,printf會(huì)自已的調(diào)用fputc函數(shù)來實(shí)現(xiàn)串口數(shù)據(jù)的輸出。
2、添加Retarget.c,實(shí)現(xiàn)在KEIL下使用printf函數(shù),以LPC2478為例
首先在Keil安裝目錄下面ARM/Startup/Retarget.c找到Retarget.c文件將其復(fù)制到你的工程文件夾下面;并將其加入到工程中
在uart.c中添加如下代碼
View Code
// Implementation of sendchar (also used by printf function to output data) int sendchar (int ch) { // Write character to Serial Port while (!(U0LSR & 0x20)); return (U0THR = ch); } int getkey (void) { // Read character from Serial Port while (!(U0LSR & 0x01)); return (U0RBR); } 這樣,只要在需要用printf的文件里#include就可以了,printf會(huì)通過Retarget中的fputc函數(shù)調(diào)用sendchar來實(shí)現(xiàn)串口數(shù)據(jù)的輸出。
事實(shí)上,和第一種的方式是一樣的。
3、自定義printf函數(shù),以AVR為例
前面介紹的是在KEIL編譯器上使用printf函數(shù),但不是所有的編譯器平臺(tái)都能適用,因此有時(shí)候我們需要自定義printf函數(shù),下面以AVR在GCC下為例
在usart.c中添加如下代碼
View Code
#include#include//向串口usart0發(fā)送一個(gè)字節(jié)函數(shù) void Uart0_putchar( unsigned char sdbyte) { UDR0=sdbyte; while(!(UCSR0A&0x40)); UCSR0A
=0x40; }////////////////////////////////////////////////////////void Uart0_printf(char *str,...){ char buf[128]; unsigned char i = 0; va_list ptr; va_start(ptr,str); vsprintf(buf,str,ptr); while(buf[i]) { Uart0_putchar(buf[i]); i++; }}結(jié)語:
有了printf格式化輸出函數(shù),調(diào)試起來就方便多了。
評(píng)論