單片機(jī)程序巧用printf
printf函數(shù)在使用時(shí),不僅僅要初始化串口,還需要其它的一些設(shè)置或者要調(diào)用其它的一些函數(shù) 否則printf函數(shù)將不能按我們想要的方式執(zhí)行。
由于不同的編譯器studio函數(shù)不一樣,所以使用的方法也不一樣,這需要大家去看編譯器的help幫助選項(xiàng),這里我們以STM32、51和AVR整理了幾個(gè)串口打印程序,供需要的朋友參考。
1、在KEIL下使用printf函數(shù),以STM32為例
在uart.c中添加如下代碼
View Code
/*******************************************************************************
函數(shù)名:fputc
輸 入:
輸 出:
功能說(shuō)明:
重定義putc函數(shù),這樣可以使用printf函數(shù)從串口1打印輸出
*******************************************************************************/
int fputc(int ch, FILE *f)
{
/* Place your implementation of fputc here */
/* e.g. write a character to the USART */
USART_SendData(USART1, (uint8_t) ch);
/* Loop until the end of transmission */
while (USART_GetFlagStatus(USART1, USART_FLAG_TC) == RESET)
{}
return ch;
}
/*******************************************************************************
函數(shù)名:fputc
輸 入:
輸 出:
功能說(shuō)明:
重定義getc函數(shù),這樣可以使用scanff函數(shù)從串口1輸入數(shù)據(jù)
******************************************************************************/
int fgetc(FILE *f)
{
/* 等待串口1輸入數(shù)據(jù) */
while (USART_GetFlagStatus(USART1, USART_FLAG_RXNE) == RESET)
{}
return (int)USART_ReceiveData(USART1);
}
這樣,只要在需要用printf的文件里#include 就可以了,printf會(huì)自已的調(diào)用fputc函數(shù)來(lái)實(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ì)通過(guò)Retarget中的fputc函數(shù)調(diào)用sendchar來(lái)實(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++;
}
}
這樣有了printf格式化輸出函數(shù),隨時(shí)能把需要的變量打印到pc機(jī)或液晶上,調(diào)試起來(lái)就方便多了。
評(píng)論