欢迎来到天天文库
浏览记录
ID:17057881
大小:16.31 KB
页数:4页
时间:2018-08-27
《浮点数转换为字符串》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、串口通讯中传递的数据格式不外两种:ASCII码(即可见字符形式)和二进制数据格式(对应Modbus协议中有ASCII模式和RTU模式)。最初的想法是把浮点数的各位分别提取出来,保存成一个各元素都是ASCII码的数组,然后通过串口发送出去,对方接收到这个数组后再相应地组合成原来的浮点数。这是以前写过的一段代码: //################################################################ //函数名:voidFloat2Char(floatValue,char*array) //描述:将浮点数的各个位
2、的数值转换成字符串,通过串口发送至上位机显示 //参数:floatValue为欲转换的正数浮点数值,转换结果保存在字符数组*array里 //################################################################ voidFloat2Char(floatValue,char*array) { Uint16IntegerPart; floatDecimalPart; Uint16i=0; Uint16j=0; chartemp; //分离整数部分与小数部分: //整数部分保
3、存在IntegerPart中 //小数部分保存在DecimalPart中 if(Value>=1) { IntegerPart=(Uint16)Value; DecimalPart=Value-IntegerPart; } else { IntegerPart=0; DecimalPart=Value-IntegerPart; } //转换整数部分 if(IntegerPart==0) { array[0]=0+48; array[1]='.'; i=1; } else { while(IntegerPart
4、>0) {otherstaffoftheCentre.Duringthewar,ZhuwastransferredbacktoJiangxi,andDirectorofthenewOfficeinJingdezhen,JiangxiCommitteeSecretary.Startingin1939servedasrecorderoftheWestNorthOrganization,SecretaryoftheSpecialCommitteeAfterthevictoryofthelongMarch,hehasbeentheNorthwestOfficeoft
5、heFederationofStateenterprisesMinister,ShenmufuguSARmissions,DirectorofNingxiaCountypartyCommitteeSecretaryandrecorderoftheCountypartyCommitteeSecretary,Ministersand array[i]=IntegerPart%10+48; IntegerPart=IntegerPart/10; i++; } i--; //修正转换结果的顺序 for(j=0;j+1<=(i+1)/2;j++){
6、temp=array[j]; array[j]=array[i-j]; array[i-j]=temp; } i++; array[i]='.'; } //转换小数部分,此处设置最多转换到第四位小数 i++; array[i++]=(Uint16)(DecimalPart*10)%10+48; array[i++]=(Uint16)(DecimalPart*100)%10+48; array[i++]=(Uint16)(DecimalPart*1000)%10+48; //if(5==i) array[i++]=(Uint16
7、)(DecimalPart*10000)%10+48; array[i]=' ';//结束符 } //Endofline 这段代码没有考虑负数的转换,要转换带符号数只需加入符号判断后将正(负)号标志放在数组的第一位即可。这段函数用起来挺好用,但是这种方法有很多不完善的地方,比如要预先设置字符数组*array的大小以足够存储转换后的各位,小数点位置不确定,给接收方还原数据带来了麻烦。 硬件存储浮点数,统一的标准是IEEE754标准,因此更好的方法是通过这个统一的标准来实现串口传送浮点数据的转换和还原。嵌入式硬件使用的float型数据即单
8、精度32位浮点数格式,这在一般应用中已
此文档下载收益归作者所有