C51 浮点数转字符串函数

单片机浮点数转字符串可以使用 stdio.h 中sprintf函数,但代码体积和RAM占用空间比较大。自己写的程序又不太好。在学习GPS数据解析过程中用到了LeiOuYang的GPS解析库,在其中有浮点数转字符串函数,现推荐给大家。

一下是完整的基于KEIL C51 的C文件:

//#include <string.h>
//#include <stdio.h>  //使用sprintf时取消该注释
#define DIGITAL_TO_CHAR(x) ( (x)+'0' )
unsigned char DispBuff[5];
/* 多次方 */
static int int_pow(int value, unsigned int count)
{
	int v = 1;
	
	while(count--)
		v = v*value;
	return v;
} 
/* 浮点数转换为字符串,包括整数转换为字符串 
*  intgr指定整数位个数,dec指定小数位个数 
*  自动去除前面的0,小数点后面的0不会舍去 
*/ 
static unsigned char float_to_string(double value, char* pdest, unsigned int intgr, unsigned int dec)
{
	char* pstr = (void*)0;
	double fvalue = 0.0;
	char c = 0;
	unsigned int tvalue = 0;
	unsigned char zeroflag = 0;
	unsigned int tm = 0;
	
	if( (void*)0==pdest || 0==intgr ) return 0;
	
	if(dec>9) dec = 9;
	
	if(1==intgr) zeroflag = 1;
	
	pstr = pdest;
	if(value<-0.000000000000000001)
	{
		*pstr = '-';
		++pstr;
		value = -value;
	}
	
	tvalue = (int)value%int_pow(10,intgr);
	while(intgr)
	{
		c = DIGITAL_TO_CHAR(tvalue/int_pow(10,intgr-1));
		
		if( !zeroflag  && '0'==c )
		{
			tvalue = tvalue%int_pow(10,intgr-1);
			--intgr;
			continue;
		}
		
		zeroflag = 1;
		
		*pstr = c;
		tvalue = tvalue%int_pow(10,intgr-1);
		--intgr;
		++pstr;
	}
	
	if( !zeroflag ) *pstr++ = '0';
		
		
	/* 如果小数位数为0,则返回整数部分 */
	if(0==dec)
	{
		*pstr = '\0';
		return 1;		
	}
	
	*pstr++ = '.';	
	tm = (unsigned int)int_pow(10,dec);
	tvalue = (unsigned int)( ( (unsigned int)((value-(unsigned int)value)*tm) )%tm );
	while(dec)
	{
		tm = int_pow(10,dec-1);
		*pstr = DIGITAL_TO_CHAR(tvalue/tm);
		tvalue = tvalue%tm;
		--dec;
		++pstr;
	}
	*pstr = '\0';
	return 1;	
} 

void main()
{
	int a;
//	sprintf(DispBuff,"%.1f",10.1);
	a=float_to_string(10.1,DispBuff,3,1);
	while(1);
}

编译结果:

 仿真结果:

 

而使用sprintf的程序,

#include <stdio.h>  
unsigned char DispBuff[5];
void main()
{
    sprintf(DispBuff,"%.1f",10.1);
    while(1);
}

编译结果:

 

评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

armcsdn

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值