STM32 中浮点转成字符串,解决 -u_printf_float
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
开发偶遇问题
在C++或其他高级语言中,以及C语言在Visual Studio或者linux平台上,是可以直接通过sprintf将,int ,float转换成string类型的;
但是,在STM32CubeIDE中,实测,
int sprintf ( char * str, const char * format, ... );
如果直接是float转换成char类型,会提示报错,-u_printf_float类型;
解决方法1
在工程的配置中,设置printf支持float类型
很遗憾,本人实测后,并未解决;
无奈,自己发明了方法二
手动造轮子
网上有很多人在写float转换成sting 的格式,但是,个人觉得,都太复杂,而且,不适用;
这也是C语言的缺点,本人之前一直写C++,因为嵌入式的原因,不得不使用
C语言,但是也真的觉得C语言的开发低效性,很无语。
本人设计的转换函数,两种可以任选,根据自己的需要;
//无返回值的函数
void Float2Str(char* str,float value)
{
int Head = (int)value;
int Point = (int)((value - Head)*10.0);
sprintf(str, "%d.%d", Head, Point);
}
带返回值的,个人觉得这样更加方便,提高代码的简洁性
char *Float2String(float value)
{
char* str = (char*)malloc(10);
int Head = (int)value;
int Point = (int)((value - Head)*10.0);
sprintf(str, "%d.%d", Head, Point);
return str;
}
好的,编译通过,happy.
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献2条内容
所有评论(0)