NXP KL03--1. printf实现
【摘要】
//static
int sendchar(char ch)
{
// UART_SendByte(UART_CH0, ch);
while( !(LPUART0->STAT&...
//static
int sendchar(char ch)
{
// UART_SendByte(UART_CH0, ch);
while( !(LPUART0->STAT&LPUART_STAT_TDRE_MASK));//µÈ´ý·¢ËͼĴæÆ÷»º³åΪ¿Õ
LPUART0->DATA = ch;
return ch;
}
void uart_sendstring(char *pt,int len)
{
#if 0
while(*pt)
sendchar(*pt++);
// sendchar('\n');
UART0_PutStr("\n");
{
if(*pt == '\n')
{
sendchar('\r');
pt++ ;
}
else
sendchar(*pt++);
}
#else
while(*pt)
{
sendchar(*pt++);
}
// UART0_PutStr("\n");
sendchar('\r');
sendchar('\n');
#endif
}
char string[100]={0};
void uart_printf(char *fmt,...)
{
va_list ap;
int len=0;
memset(string,0,100);
va_start(ap,fmt);
len = vsprintf(string,fmt,ap); //Use It Will Increase the code size, Reduce the efficiency
if(len >0)
{
// UART0_PutStr("len succ ");
//"len =%d",len);
uart_sendstring(string, len);
}
else
{
//UART0_PutStr("len error ");
}
va_end(ap);
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
char string[100]={0}; 必须用全局或者静态
.h文件
int sendchar(char ch);
void uart_printf(char *fmt,…) ;
测试代码:
5.FLOAT DOUBLE
uart_printf(“sizeof(float)=%d\n”,sizeof(float));
uart_printf(“sizeof(double)=%d\n”,sizeof(double));
uart_printf(“fo=%5.3f\n”,fo); FAIL
uart_printf(“dou=%3.2f\n”,dou); FAIL
sizeof(float)=4
sizeof(double)=8
KL03 为M0 内核,不支持FLOAT计算
文章来源: blog.csdn.net,作者:悟空胆好小,版权归原作者所有,如需转载,请联系作者。
原文链接:blog.csdn.net/xushx_bigbear/article/details/123783142
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)