完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
缺氧缺血性脑病,
有没有人知道如何将浮点转换成PSOC5(GCC编译器)上的字符串?我想把浮点转换成字符串,这样我就可以在我的GLCD上显示,它具有只显示字符串类型的库函数。 以上来自于百度翻译 以下为原文 Hie, Does anyone know how I can convert a float into a string on the psoc5 (gcc compiler)? I would like to convert floats into strings so that I can display on my GLCD which has library functions for displaying only string types. |
|
相关推荐
2个回答
|
|
我刚刚发现,Simulff()函数完全适用于这种转换。语法是这样的: 浮动A=4.8375; 查尔文本〔9〕; SaveTFF(AX文本,“%F”,A); A-文字〔4〕=‘0’; 这将返回字符串4.84 以上来自于百度翻译 以下为原文 I just discovered that the sprintf() function works perfectly for this conversion. The syntax is something like this: float a = 4.8375; char a_text[9]; sprintf(a_text,"%f",a); a_text[4] = ' |