您的位置 首页 国产IC

avr单片机 串口完成printf(运用变参函数)

avr单片机 串口实现printf(使用变参函数)

#include

#include

#include

typedef unsigned char uint8;

static void usart_init(void)

{

UCSRA = 0x02;

UCSRB = 0x18;

UCSRC = 0x06;

UBRRH = 0x00;

UBRRL = 103;

}

static void put_char(uint8 data)

{

if (data == ‘/r’)

put_char(0x09);

while ( !(UCSRA (1

;

UDR = data;

}

static void myprintf(const char* fmt,…)

{

const char* s;

int d;

char buf[16];

va_list ap;

va_start(ap,fmt); // 将ap指向fmt(即可变参数的第一个?下一个?)

while (*fmt)

{

if (*fmt != ‘%’)

{

put_char(*fmt++); // 正常发送

continue;

}

switch (*++fmt) // next %

{

case ‘s’:

s = va_arg(ap,const char*); // 将ap指向者转成char*型,并回来之

for (; *s; s++)

put_char(*s);

break;

case ‘x’:

d = va_arg(ap,int); // 将ap指向者转成int型,并回来之

itoa(d,buf,16); // 将整型d以16进制转到buf中

for (s = buf; *s; s++)

put_char(*s);

break;

case ‘d’:

d = va_arg(ap,int);

itoa(d,buf,10); // 将整型d以10进制转到buf中

for (s = buf; *s; s++)

put_char(*s);

break;

default:

put_char(*fmt);

break;

}

fmt++;

}

va_end(ap);

}

int main(void)

{

usart_init(); // 初始化串口

uint8 i = 100;

uint8* s = Word!;

while(1)

{

myprintf(/n/rHello %s/n/r0x%x = %d/n,s,i,i);

}

return 0;

}

声明:本文内容来自网络转载或用户投稿,文章版权归原作者和原出处所有。文中观点,不代表本站立场。若有侵权请联系本站删除(kf@86ic.com)https://www.86ic.net/bandaoti/ic/131795.html

为您推荐

联系我们

联系我们

在线咨询: QQ交谈

邮箱: kf@86ic.com

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

返回顶部