2019-07-14 18:27发布
zhouxk 发表于 2018-8-20 09:09 对IAR不熟,会一点。 用LCD习惯了,一般先sprintf到字符串,然后再printf打印字符串。
最多设置5个标签!
用LCD习惯了,一般先sprintf到字符串,然后再printf打印字符串。
先使用如下代码 sprintf 再打印字符串也是不可以的。输出结果为 %f * * * *
void printf_float(float a)
{
char tmp[8]={0};
int i;
sprintf(tmp, "%f", a);
for(i=0; i<8; i++)
printf("%c", tmp);
printf(" ");
}
问题解决了,见#13
一周热门 更多>