printFloat rounding fix. Affected settings. Recommend using new build.

printFloat was printing incorrectly and adding a value of 5 to every
float instead of 0.0005 when rounding to 3 decimal places. The printed
settings values do not accurately portray the actual stored value.
Recommend using newly posted build.
This commit is contained in:
Sonny Jeon 2012-01-31 21:09:47 -07:00
parent b86ba60a25
commit 24f1e0231e

View File

@ -29,7 +29,7 @@
#ifndef DECIMAL_PLACES
#define DECIMAL_PLACES 3
#define DECIMAL_MULTIPLIER 10*10*10
#define DECIMAL_MULTIPLIER 1000
#endif
void printString(const char *s)