Last active
September 22, 2023 11:25
-
-
Save colesnicov/d757884fd778330b939a68841c945e61 to your computer and use it in GitHub Desktop.
Float to string conversion for AVR's devices and over embedded MCU's..
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @Licence WTFPL | |
*/ | |
#include "ftoa.h" | |
int ftoa(float f, char *p, uint8_t precision) | |
{ | |
typedef union | |
{ | |
int32_t Long; | |
float Float; | |
} int32_Float_t; | |
int32_t mantissa, int_part, frac_part; | |
int16_t exp2; | |
int32_Float_t x; | |
if (f == 0.0) | |
{ | |
*p++ = '0'; | |
if (precision > (uint8_t) 0) | |
{ | |
*p++ = '.'; | |
*p++ = '0'; | |
} | |
*p = 0; | |
return 0; | |
} | |
x.Float = f; | |
exp2 = (unsigned char) (x.Long >> 23) - 127; | |
mantissa = (x.Long & 0xFFFFFF) | 0x800000; | |
frac_part = 0; | |
int_part = 0; | |
if (exp2 >= 31) | |
{ | |
return _FTOA_TOO_LARGE; | |
} | |
else if (exp2 < -23) | |
{ | |
return _FTOA_TOO_SMALL; | |
} | |
else if (exp2 >= 23) | |
int_part = mantissa << (exp2 - 23); | |
else if (exp2 >= 0) | |
{ | |
int_part = mantissa >> (23 - exp2); | |
frac_part = (mantissa << (exp2 + 1)) & 0xFFFFFF; | |
} | |
else | |
{ | |
//if (exp2 < 0) | |
frac_part = (mantissa & 0xFFFFFF) >> -(exp2 + 1); | |
} | |
if (x.Long < 0) | |
{ | |
*p++ = '-'; | |
} | |
if (int_part == 0) | |
*p++ = '0'; | |
else | |
{ | |
ltoa(int_part, p, 10); | |
while (*p) | |
p++; | |
} | |
if (precision > (uint8_t) 0) | |
{ | |
*p++ = '.'; | |
if (frac_part == 0) | |
{ | |
*p++ = '0'; | |
} | |
else | |
{ | |
char m; | |
for (m = 0; m < precision; m++) | |
{ | |
//frac_part *= 10; | |
frac_part = (frac_part << 3) + (frac_part << 1); | |
*p++ = (frac_part >> 24) + '0'; | |
frac_part &= 0xFFFFFF; | |
} | |
//delete ending zeroes | |
for (--p; p[0] == '0' && p[-1] != '.'; --p) | |
{ | |
} | |
++p; | |
} | |
} | |
*p = 0; | |
return 0; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @Licence WTFPL | |
*/ | |
#pragma once | |
#include <stdint.h> | |
#define _FTOA_TOO_LARGE -2 // |input| > 2147483520 | |
#define _FTOA_TOO_SMALL -1 // |input| < 0.0000001 | |
int ftoa(float f, char *p, uint8_t precision); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment